-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
31 lines (29 loc) · 976 Bytes
/
index.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>E-Learning Platform</title>
<link rel="stylesheet" href="styles.css">
<script src="https://code.jquery.com/jquery-3.2.1.js"></script>
</head>
<body>
<header class="navbar">
<div class="container">
<h1 class="logo">E-Learning Platform</h1>
<nav>
<ul>
<li><a href="login.html">Get Started</a></li>
<!-- <li><a href="register.html">Register</a></li> -->
</ul>
</nav>
</div>
</header>
<section id="about" class="about-section">
<div class="container">
<h2>About Us</h2>
<p>Welcome to our e-learning platform. We strive to provide quality education to everyone, anywhere.</p>
</div>
</section>
</body>
</html>