-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathnavbar.html
More file actions
58 lines (51 loc) · 2.57 KB
/
Copy pathnavbar.html
File metadata and controls
58 lines (51 loc) · 2.57 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
49
50
51
52
53
54
55
56
57
58
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>GDSC MOI UNIVERSITY </title>
<meta content="width=device-width, initial-scale=1.0" name="viewport">
<meta content="" name="keywords">
<meta content="" name="description">
<!-- Favicon -->
<link href="images/favicon.png" rel="icon">
<!-- Icon Font Stylesheet -->
<link href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.10.0/css/all.min.css" rel="stylesheet">
<link href="https://cdn.jsdelivr.net/npm/bootstrap-icons@1.4.1/font/bootstrap-icons.css" rel="stylesheet">
<!-- Customized Bootstrap Stylesheet -->
<link href="styles/bootstrap.min.css" rel="stylesheet">
<!-- Template Stylesheet -->
<link href="styles/navbar.css" rel="stylesheet">
</head>
<body>
<!-- Navbar Start -->
<nav class="navbar navbar-expand-lg bg-white navbar-light sticky-top p-0 wow fadeIn" data-wow-delay="0.1s">
<a href="#" class="navbar-brand d-flex align-items-left px-4 px-lg-5">
<h1 class="m-0 text-primary"><i class="far fa-school me-3"><img src="images/logo .png" load="lazy"></i></h1>
</a>
<button type="button" class="navbar-toggler me-4" data-bs-toggle="collapse" data-bs-target="#navbarCollapse">
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse" id="navbarCollapse">
<div class="navbar-nav ms-auto p-4 p-lg-0">
<a href="#" class="nav-item nav-link active">OUR CLUB</a>
<a href="#" class="nav-item nav-link">About Us</a>
<a href="#" class="nav-item nav-link">Vision</a>
<div class="nav-item dropdown">
<a href="#" class="nav-link dropdown-toggle" data-bs-toggle="dropdown">Projects </a>
<div class="dropdown-menu rounded-0 rounded-bottom m-0">
<a href="#" class="dropdown-item">Python</a>
<a href="#" class="dropdown-item">Machine Learning</a>
<a href="#" class="dropdown-item">Flutter</a>
<a href="#" class="dropdown-item">Web Wednesdays</a>
<a href="#" class="dropdown-item">Data Science</a>
</div>
</div>
<a href="#" class="nav-item nav-link">Collaborate</a>
</div>
<button href="#" class="btn btn-secondary rounded-50 ">LOGIN<i class="fa fa-arrow-right ms-3"></i></button>
</div>
</nav>
<!-- Navbar End -->
<script src="js/navbar.js"></script>
</body>
</html>