-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathHome.html
32 lines (31 loc) · 1009 Bytes
/
Home.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
<!DOCTYPE html>
<html lang="en" dir="ltr">
<head>
<meta charset="utf-8">
<title>Ogma</title>
<link href="Home.css" rel="stylesheet" type="text/css">
<div class="Navbar">
<nav>
<ul>
<li><a class="active" href="Home.html">Home</a></li>
<li><a class="active" href= "About.html">About</a></li>
<li><a class="active" href="Contact.html">Contact</a></li>
</ul>
</nav>
</div>
</head>
<body>
<h1>OGMA</h1>
<h4>Learn Anything.</h4>
<div class="Selection">
<a href="Login.html">
<button>Login</button>
</a>
</div>
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Fredoka:wght@600&display=swap" rel="stylesheet">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.6.0/jquery.min.js"></script>
<script src="Home.js" charset="utf-8"></script>
</body>
</html>