-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
34 lines (27 loc) · 1.18 KB
/
Copy pathindex.html
File metadata and controls
34 lines (27 loc) · 1.18 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<link href="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-ggOyR0iXCbMQv3Xipma34MD+dH/1fQ784/j6cY/iJTQUOhcWr7x9JvoRxT2MZw1T" crossorigin="anonymous">
<link href="https://fonts.googleapis.com/css?family=Russo+One&display=swap" rel="stylesheet">
<link rel="stylesheet" href="./css/style.css">
<title>Book-Worm</title>
</head>
<body>
<nav class="navbar navbar-dark bg-dark">
<a class="navbar-brand">
<h3 class="text-center text-success font-weight-bold">Book Worm</h3>
</a>
<div class="form-inline">
<input class="form-control mr-sm-2" type="search" placeholder="Search" aria-label="Search" id="searchText">
<button class="btn btn-outline-success my-2 my-sm-0" type="submit" id="search">Search</button>
</div>
</nav>
<div>
<div class="container-fluid" id="content"></div>
</div>
<script src="./js/index.js"></script>
</body>
</html>