-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
34 lines (31 loc) · 951 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
32
33
34
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width">
<title>Education website of 10-Class</title>
<link href="style.css" rel="stylesheet" type="text/css" />
</head>
<body>
<nav class="navbar">
<div class="logo">Education website</div>
<ul class="nav-links">
<div id="toggle-container">
<div id="one"></div>
<div id="two"></div>
<div id="three"></div>
</div>
<div class="menu toggle-content" id="toggle-content">
<li> <a href="#">Home</a></li>
<li> <a href="#">About</a></li>
<li> <a href="#">Contact us</a></li>
<li> <a href="#">Service</a></li>
</div>
</ul>
</div>
</nav>
<h1 style="text-align: center; margin-top: 20px;">Education website</h1>
<script src="script.js"></script>
<script src="https://replit.com/public/js/replit-badge.js" theme="blue" defer></script>
</body>
</html>