-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtemplate.html
More file actions
48 lines (45 loc) · 1.9 KB
/
template.html
File metadata and controls
48 lines (45 loc) · 1.9 KB
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
46
47
48
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Convocation 2022 | IIITDM Kancheepuram</title>
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.2.0/dist/css/bootstrap.min.css" rel="stylesheet"
integrity="sha384-gH2yIJqKdNHPEq0n4Mqa/HGKIhSkIHeL5AyhkYV8i59U5AR6csBvApHHNl/vI1Bx" crossorigin="anonymous">
<link rel="stylesheet" href="./assets/css/custom.css">
<link rel="stylesheet" href="./assets/css/index.css">
</head>
<body>
<!-- Start of Navigation bar -->
<nav class="navbar navbar-expand-lg bg-primary navbar-dark fixed-top">
<div class="container-fluid p-0">
<button class="navbar-toggler mx-2 mb-2" type="button" data-bs-toggle="collapse" data-bs-target="#navbarTogglerDemo01"
aria-controls="navbarTogglerDemo01" aria-expanded="false" aria-label="Toggle navigation">
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse rounded-bottom" id="navbarTogglerDemo01">
<ul class="navbar-nav m-auto mb-lg-0 bg-primary px-2">
<li class="nav-item">
<a class="nav-link active" aria-current="page" href="index.html">Home</a>
</li>
<li class="nav-item">
<a href="guidelines.html" class="nav-link">Guidelines</a>
</li>
<li class="nav-item">
<a class="nav-link" href="#">Awards</a>
</li>
<li class="nav-item">
<a class="nav-link" href="graduants.html">Graduants</a>
</li>
<li class="nav-item">
<a class="nav-link" href="updates.html">Updates</a>
</li>
</ul>
</div>
</div>
</nav>
<!-- End of Navigation bar -->
<script src="/node_modules/bootstrap/dist/js/bootstrap.js"></script>
<script src="/node_modules/bootstrap/dist/js/bootstrap.js.map"></script>
</body>
</html>