forked from sirebilly/TekwebProj
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
30 lines (27 loc) · 925 Bytes
/
index.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<title>Online Shop</title>
<!-- JQuery -->
<script src="js/jquery-3.3.1.js"></script>
<!-- Bootstrap -->
<script src="Bootstrap/js/bootstrap.js"></script>
<link rel="stylesheet" href="Bootstrap/css/bootstrap.css">
</head>
<body id="page-top">
<!-- NavBar -->
<nav class="navbar navbar-dark bg-dark fixed-top">
<a class="navbar-brand" href="page-top">
<img src="#" width="30" height="30">
Online Shop
</a>
<!-- Search Bar -->
<form class="form-inline">
<input class="form-control mr-sm-2" type="search" placeholder="Search" aria-label="Search">
<button class="btn btn-outline-success my-2 my-sm-0" type="submit">Search</button>
</form>
</nav>
</body>
</html>