-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathAbout.html
45 lines (43 loc) · 1.43 KB
/
About.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
33
34
35
36
37
38
39
40
41
42
43
44
45
<!DOCTYPE html>
<html lang="en" dir="ltr">
<head>
<meta charset="utf-8">
<title>Ogma</title>
<link href="About.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="Contact.html">Contact</a></li>
<li><a class="active" href= "About.html">About</a></li>
</ul>
</nav>
</div>
</head>
<body>
<div class = "Container">
<form class="form" id="login">
<h1 class="form__title">Who we are and what we do</h1>
<div class="form__message form__message--error"></div>
<p class = "form__link">
<a href ='#' class="form__link"> Ogma is an E-learning platform for
series B-F technology startups. We offer their employees free tutoring
for themselves and their families in a variety of subjects and topics,
ranging from academic subjects like math and science,to hobby-driven
skills like piano, video games, or chess.
</a>
</p>
<div class = "form__input-group">
<div class ="form__input-error-message"></div>
</div>
</div>
</form>
<div class="Selection">
<a href="Login.html">
<button>Login</button>
</a>
</div>
<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>