-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
32 lines (27 loc) · 938 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
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>OMDb API</title>
<link rel="stylesheet" href="style.css">
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-1BmE4kWBq78iYhFldvKuhfTAU6auU8tT94WrHftjDbrCEXSU1oBoqyl2QvZ6jIW3" crossorigin="anonymous">
</head>
<div>
<div class="banner m-10">
<div class="container text-center p-5 mt-5">
<form id="search-form" class="row">
<div class="col-10">
<input id="search-input" type="text" class="form-control" placeholder="Find movies">
</div>
<div class="col-2">
<input type="submit" class="btn btn-primary" value="Search">
</div>
</form>
</div>
</div>
<div class="d-flex flex-wrap justify-content-center p-5" >
</div>
</div>
<script src="main.js"></script>
</body>
</html>