-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
39 lines (34 loc) · 1.16 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Search Movie app</title>
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.5.0/css/bootstrap.min.css" integrity="sha384-9aIt2nRpC12Uk9gS9baDl411NQApFmC26EwAOH8WgZl5MYYxFfc+NcPb1dKGj7Sk" crossorigin="anonymous">
</head>
<body>
<nav class="navbar navbar-expand-lg navbar-dark bg-primary">
<div class="container">
<a class="navbar-brand" href="#">MovieApp</a>
</div>
</nav>
<!-- column sizing -->
<form class="px-4">
<div class="form-row mt-4">
<div class="col-md-4 col-sm-0"></div>
<div class="col-md-4 col-sm-12">
<input type="text"
class="form-control"
placeholder="search movie"
id="input-cari"
>
<!-- card -->
<div id="result" >
</div>
</div>
</div>
</form>
<!-- sript js -->
<script src="./src/script.js"></script>
</body>
</html>