-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmovie.html
32 lines (28 loc) · 925 Bytes
/
movie.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>
<title>MOOBIE</title>
<link href="https://bootswatch.com/4/cyborg/bootstrap.min.css" rel="stylesheet">
<link href="style.css" rel="stylesheet">
<link href="icon.jpg" rel="shortcut icon" type="image/x-icon" />
</head>
<body>
<nav class="navbar navbar-default">
<div class="container">
<div class="navbar-header">
<a class="navbar-brand" href="index.html">MOOBIE</a>
</div>
</div>
</nav>
<div class="container">
<div id="movie" class="well"></div>
</div>
<script src="https://code.jquery.com/jquery-3.5.1.min.js"
integrity="sha256-9/aliU8dGd2tb6OSsuzixeV4y/faTqgFtohetphbbj0=" crossorigin="anonymous"></script>
<script src="https://unpkg.com/axios/dist/axios.min.js"></script>
<script src="script.js"></script>
<script>
getMovie();
</script>
</body>
</html>