-
Notifications
You must be signed in to change notification settings - Fork 3
/
navbar.html
53 lines (49 loc) · 1.77 KB
/
navbar.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
<!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">
<title>navBar</title>
<link rel="stylesheet" href="./css/style.css">
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-1BmE4kWBq78iYhFldvKuhfTAU6auU8tT94WrHftjDbrCEXSU1oBoqyl2QvZ6jIW3" crossorigin="anonymous">
<script src="https://kit.fontawesome.com/f205abf1eb.js" crossorigin="anonymous"></script>
<script src="https://kit.fontawesome.com/f205abf1eb.js" crossorigin="anonymous"></script>
<style>
</style>
</head>
<body>
<nav class="bg-light">
<div>
<!-- brand and location -->
<div>
<img src="./svg/logo.svg" alt="fraazo">
</div>
<div>
<button class="btn">
<i class="fa-solid fa-location-dot"></i>
<span>Current Location</span>
</button>
</div>
</div>
<div>
<!-- search bar -->
<input type="text" class="py-2 px-3 rounded-pill border border-2 text-secondary fw-light fs-6" placeholder="Find fresh vegetables, fruits and dairy...">
</div>
<div>
<div>
<i class="fa-solid fa-cart-shopping"></i>
<p class="mb-0">Cart</p>
</div>
<div>
<i class="fa-solid fa-wallet"></i>
<p class="mb-0">Credits</p>
</div>
<div>
<i class="fa-solid fa-user"></i>
<p class="mb-0">Login</p>
</div>
</div>
</nav>
</body>
</html>