-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcovidInfo.html
60 lines (55 loc) · 2.03 KB
/
covidInfo.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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link
href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css"
rel="stylesheet"
integrity="sha384-EVSTQN3/azprG1Anm3QDgpJLIm9Nao0Yz1ztcQTwFspd3yD65VohhpuuCOmLASjC"
crossorigin="anonymous"
/>
<link
rel="stylesheet"
href="https://cdn.jsdelivr.net/npm/[email protected]/font/bootstrap-icons.css"
/>
<link rel="stylesheet" href="style.css" />
<title>COVID - Info</title>
<link href="../img/cd_favicon.png" rel="icon" />
</head>
<body>
<!-- New Navbar (Gloria's suggestion) -->
<header id="header" class="fixed-top">
<div class="container d-flex align-items-center">
<!-- <h1 class="logo me-auto"><a href="index.html">Mentor</a></h1> -->
<!-- Uncomment below if you prefer to use an image logo -->
<a href="index.html" class="logo me-auto"
><img src="../img/logo.png" alt="" class="img-fluid"
/></a>
<nav id="navbar" class="navbar order-last order-lg-0">
<ul>
<li><a class="active" href="index.html">Home</a></li>
<li><a href="#">About</a></li>
<li><a href="#">Activities</a></li>
<li><a href="#">Facilitators</a></li>
<li><a href="#">Schedule </a></li>
<li class="dropdown">
<a href="#"
><span>FAQ</span> <i class="bi bi-chevron-down"></i
></a>
<ul>
<li><a href="covidInfo.html">COVID Info</a></li>
</ul>
</li>
<li><a href="contact.html">Contact</a></li>
</ul>
<i class="bi bi-list mobile-nav-toggle"></i>
</nav>
<!-- .navbar -->
<!-- <a href="courses.html" class="apply-now-btn">Apply Now</a> -->
</div>
</header>
<!-- New Navbar ends -->
</body>
</html>