forked from BidyasagarAnupam/YearBook
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
44 lines (38 loc) · 1.26 KB
/
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
35
36
37
38
39
40
41
42
43
44
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>YearBook for MCA</title>
<link rel="stylesheet" href="style.css">
<link rel="shortcut icon" href="./img/nitjsr-logo.png" type="image/x-icon">
</head>
<body>
<div class="wrapper">
<nav class="nav-bar">
<ul>
<li><a href="./index.html">Home</a></li>
<div class="dropdown">
<button onclick="myFunction()" class="dropbtn">Batches
</button>
<div id="myDropdown" class="dropdown-content">
<a href="./batch1.html">Batch 2021</a>
<a href="./batch2.html">Batch 2022</a>
<a href="./batch3.html">Batch 2023</a>
</div>
</div>
<li><a href="./about.html">About</a></li>
</ul>
</nav>
<div class="hero-section">
<div>
<img src="./img/nitjsr-logo.png" alt="">
</div>
<div>
<h1>MCA YearBook (2021-2023)</h1>
</div>
</div>
</div>
<script src="index.js"></script>
</body>
</html>