forked from JeremyFeder/CodeWithMeFLIX
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmovie.html
More file actions
35 lines (31 loc) · 963 Bytes
/
movie.html
File metadata and controls
35 lines (31 loc) · 963 Bytes
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>
<head>
<meta charset="utf-8">
<title>CodeWithMe'Flix - Movie Info</title>
<link rel="stylesheet" href="https://bootswatch.com/4/slate/bootstrap.min.css">
<link rel="stylesheet" href="/css/style.css">
</head>
<body>
<script src="./js/key.js"></script>
<nav class="navbar navbar-default">
<div class="container">
<div class="navbar-header">
<a class="navbar-brand" href="index.html">CodeWithMe'FLIX</a>
</div>
</div>
</nav>
<div class="container">
<div id="movie" class="well"></div>
</div>
<script src="https://code.jquery.com/jquery-3.3.1.min.js"
integrity="sha256-FgpCb/KJQlLNfOu91ta32o/NMZxltwRo8QtmkMRdAu8="
crossorigin="anonymous">
</script>
<script src="https://npmcdn.com/axios/dist/axios.min.js"></script>
<script type="text/javascript" src="js/main.js"></script>
<script>
getMovie();
</script>
</body>
</html>