Skip to content

Commit 01287c5

Browse files
nav
1 parent b30a3bc commit 01287c5

File tree

2 files changed

+51
-0
lines changed

2 files changed

+51
-0
lines changed

assets/LPlogo.svg

Lines changed: 1 addition & 0 deletions
Loading

navbar/navbarU.html

Lines changed: 50 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,50 @@
1+
<!DOCTYPE html>
2+
<html>
3+
<head>
4+
<title>Bootstrap Navbar Example</title>
5+
<!-- Include Bootstrap CSS -->
6+
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.5.2/css/bootstrap.min.css">
7+
<!-- Include your custom CSS file if needed -->
8+
<link rel="stylesheet" href="styles.css">
9+
<style>
10+
body
11+
{
12+
background-color: #172439;
13+
}
14+
15+
16+
</style>
17+
</head>
18+
<body>
19+
<nav class="navbar navbar-expand-lg navbar-light bg-light">
20+
<a class="navbar-brand" href="#">
21+
<!-- Replace the 'logo.svg' with your SVG logo -->
22+
<img src="LPlogo.svg" width="30" height="30" class="d-inline-block align-top" alt="Logo">
23+
</a>
24+
<button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#navbarNav" aria-controls="navbarNav" aria-expanded="false" aria-label="Toggle navigation">
25+
<span class="navbar-toggler-icon"></span>
26+
</button>
27+
<div class="collapse navbar-collapse justify-content-end" id="navbarNav">
28+
<ul class="navbar-nav">
29+
<li class="nav-item">
30+
<!-- Replace the 'icon1.svg' with your first SVG icon -->
31+
<a class="nav-link" href="#"><img src="icon1.svg" width="30" height="30" alt="Icon 1"></a>
32+
</li>
33+
<li class="nav-item">
34+
<!-- Replace the 'icon2.svg' with your second SVG icon -->
35+
<a class="nav-link" href="#"><img src="icon2.svg" width="30" height="30" alt="Icon 2"></a>
36+
</li>
37+
<li class="nav-item">
38+
<!-- Replace the 'icon3.svg' with your third SVG icon -->
39+
<a class="nav-link" href="#"><img src="icon3.svg" width="30" height="30" alt="Icon 3"></a>
40+
</li>
41+
</ul>
42+
</div>
43+
</nav>
44+
45+
<!-- Include Bootstrap JS and jQuery -->
46+
<script src="https://code.jquery.com/jquery-3.5.1.slim.min.js"></script>
47+
<script src="https://cdn.jsdelivr.net/npm/@popperjs/core@2.5.4/dist/umd/popper.min.js"></script>
48+
<script src="https://stackpath.bootstrapcdn.com/bootstrap/4.5.2/js/bootstrap.min.js"></script>
49+
</body>
50+
</html>

0 commit comments

Comments
 (0)