-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
57 lines (50 loc) · 2.27 KB
/
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
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
<!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">
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet"
integrity="sha384-rbsA2VBKQhggwzxH7pPCaAqO46MgnOM80zW1RWuH61DGLwZJEdK2Kadq2F9CUG65" crossorigin="anonymous">
<script src="https://kit.fontawesome.com/d5360acbfe.js" crossorigin="anonymous"></script>
<link rel="stylesheet" href="./assets/style.css">
<title>Which to Read?</title>
</head>
<body class="d-flex flex-column" id="index-body">
<header>
<nav class="navbar navbar-expand-lg p-4 mb-2 bg-info">
<div class="container-fluid">
<a class="navbar-brand text-white fs-1 fw-bold" href="./index.html">Which to Read?</a>
</button>
<div class="justify-content-end" id="navbarNav">
<ul class="nav nav-pills">
<li class="nav-item">
<a class="nav-link active text-white" aria-current="page" href="./watchlist.html"><i
class="fa-solid fa-star"></i> Watchlist</a>
</li>
</ul>
</div>
</div>
</nav>
</header>
<div class="row vh-100 align-items-center justify-content-center">
<div class="col-md-6 p-5 bg-secondary rounded">
<form>
<fieldset enabled>
<h2 class="text-white">Search</h2>
<div class="mb-3">
<input type="text" id="textInput" class="form-control" placeholder="search by movie title">
</div>
<button type="submit" class="btn btn-primary"><i class="fa-solid fa-magnifying-glass"></i>
Submit</button>
</fieldset>
</form>
</div>
</div>
<footer class="bg-light mt-auto py-3">
<div class="text-center">Proudly presented by: Hayden Nease, Sy Mont, Erin Bowen</div>
</footer>
<script src="https://code.jquery.com/jquery-3.4.1.min.js"></script>
<script src="./assets/script.js"></script>
</body>
</html>