-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
36 lines (33 loc) · 916 Bytes
/
index.html
File metadata and controls
36 lines (33 loc) · 916 Bytes
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="style.css">
<title>Home</title>
</head>
<body>
<header>
<nav>
<ul>
<li><a href="./index.html" class="active">Home</a></li>
<li><a href="./pages/periodictable.html">Periodic Table</a></li>
<li><a href="./pages/chessboard.html">Chess Board</a></li>
</ul>
</nav>
</header>
<section class="home">
<div class="info">
<h1>Task 6</h1>
<h3>By</h3>
<h2>Zubair Ahmed</h2>
<h2>Trainer: SK Ahmer Ali</h2>
</div>
</section>
<footer>
<div>
<h4>SMIT Web&App Batch-1 Quetta</h4>
</div>
</footer>
</body>
</html>