-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathnav_bar.html
124 lines (122 loc) · 5.27 KB
/
nav_bar.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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
<!DOCTYPE html>
<html lang="en">
<head>
<link rel="stylesheet" href="static/css/solo_style.css">
<link rel="stylesheet" href="static/css/bootstrap.min.css">
<meta charset="UTF-8">
<title>Nav_bar</title>
</head>
<body>
<!--Start of Nav bar-->
<nav class="navbar navbar-expand-lg bg-dark-subtle">
<div class="container-fluid">
<a class="navbar-brand" href="#"><img src="static/images/favicon.png" alt="" width="60" height="60"></a>
<button class="navbar-toggler" type="button" data-bs-toggle="collapse" data-bs-target="#navbarSupportedContent" aria-controls="navbarSupportedContent" aria-expanded="false" aria-label="Toggle navigation">
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse" id="navbarSupportedContent">
<ul class="navbar-nav me-auto mb-2 mb-lg-0">
<li class="nav-item">
<a class="nav-link active" aria-current="page" href="#">Home</a>
</li>
<li class="nav-item">
<a class="nav-link" href="#">About Us</a>
<li class="nav-item dropdown">
<a class="nav-link dropdown-toggle" href="#" role="button" data-bs-toggle="dropdown" aria-expanded="false">
Our Projects
</a>
<ul class="dropdown-menu">
<li><a class="dropdown-item" href="#">BPO</a></li>
<li><a class="dropdown-item" href="#">Machine Learning</a></li>
<!-- <li><hr class="dropdown-divider"></li>-->
<li><a class="dropdown-item" href="#">Data Analytics</a></li>
<li><a class="dropdown-item" href="#">API Integration</a></li>
</ul>
</li>
<li class="nav-item">
<!-- <a class="nav-link disabled" aria-disabled="true">Disabled</a>-->
</li>
</li> <li class="nav-item">
<a class="nav-link" href="#">Services</a>
</li>
</ul>
<form class="d-flex" role="search">
<input class="form-control me-2" type="search" placeholder="Search" aria-label="Search">
<button class="btn btn-outline-success" type="submit">Search</button>
</form>
</div>
</div>
</nav>
<!--End Of Nav bar-->
<br><br><br>
<!--Start of Carousel-->
<div id="carouselExampleAutoplaying" class="carousel slide" data-bs-ride="carousel">
<div class="carousel-inner">
<div class="carousel-item active">
<img src="static/images/pexels-1.jpg" class="d-block w-100" alt="..." width="1000" height="600">
</div>
<div class="carousel-item">
<img src="static/images/pexels-2.jpg" class="d-block w-100" alt="..." width="1000" height="600">
</div>
<div class="carousel-item">
<img src="static/images/pexels-3.jpg" class="d-block w-100" alt="..." width="1000" height="600">
</div>
</div>
<div class="carousel-item">
<img src="static/images/pexels-4.jpg" class="d-block w-100" alt="..." width="1000" height="600">
</div>
</div>
<div class="carousel-item">
<img src="static/images/pexels-5.jpg" class="d-block w-100" alt="..." width="1000" height="600">
</div>
</div>
<button class="carousel-control-prev" type="button" data-bs-target="#carouselExampleAutoplaying" data-bs-slide="prev">
<span class="carousel-control-prev-icon" aria-hidden="true"></span>
<span class="visually-hidden">Previous</span>
</button>
<button class="carousel-control-next" type="button" data-bs-target="#carouselExampleAutoplaying" data-bs-slide="next">
<span class="carousel-control-next-icon" aria-hidden="true"></span>
<span class="visually-hidden">Next</span>
</button>
</div>
<!--End of Carousel-->
<br><br><br><br>
<!--Start Of Cards-->
<div class="container">
<div class="row">
<div class="col-4">
<div class="card" style="width: 18rem;">
<img src="static/images/safcom-1.png" class="card-img-top" alt="...">
<div class="card-body">
<h5 class="card-title" style="color: green"><div class="title-card_1">Tariffs</div></h5>
<p class="card-text">Enjoy flexible talk time with your friends and family and know how much talk time you can get at your budget.</p>
<a href="#" class="btn btn-success" id="button-round_1">Explore Offers</a>
</div>
</div>
</div>
<div class="col-4">
<div class="card" style="width: 18rem;">
<img src="static/images/safcom-2.png" class="card-img-top" alt="...">
<div class="card-body">
<h5 class="card-title" style="color: green"><div class="title-card_3">Safaricom VoLTE</div></h5>
<p class="card-text">Enjoy ultra HD quality voice calls and videos with sound so clear, it’ll feel like you’re right next to your family and friends.</p>
<a href="#" class="btn btn-success" id="button-round_2">Find Out More</a>
</div>
</div>
</div>
<div class="col-4">
<div class="card" style="width: 18rem;">
<img src="static/images/safcom-3.jpg" class="card-img-top" alt="...">
<div class="card-body">
<h5 class="card-title" style="color: green"><div class="title-card_3">Reverse Call</div></h5>
<p class="card-text">A service that allows a customer to make a call with or without airtime and the receiver of the call pays on the caller’s behalf.</p>
<a href="#" class="btn btn-success" id="button-round_3">Learn More</a>
</div>
</div>
</div>
</div>
</div>
<!--End Of Cards-->
<script src="static/js/bootstrap.bundle.min.js"></script>
</body>
</html>