-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
35 lines (35 loc) · 999 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
31
32
33
34
35
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="stylesheet" href="style.css" />
<link
rel="stylesheet"
href="https://cdnjs.cloudflare.com/ajax/libs/bootswatch/4.4.1/superhero/bootstrap.min.css"
/>
<title>Movies App</title>
</head>
<body>
<nav class="navbar bg-dark border-bottom border-warning">
<a href="#" class="navbar-brand mg-l">Movies Directory</a>
</nav>
<div class="container">
<div class="jumbotron">
<h3 class="text-center">Search For Any Movies</h3>
<form id="searchForm">
<input
type="text"
class="form-control"
id="searchText"
placeholder="Search Movies..."
/>
</form>
</div>
</div>
<div class="container">
<div class="row" id="movies"></div>
</div>
<script src="app.js"></script>
</body>
</html>