-
Notifications
You must be signed in to change notification settings - Fork 16
/
Copy pathindex.html
42 lines (40 loc) · 1.09 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
40
41
42
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width,initial-scale=1">
<link rel="stylesheet" href="https://netdna.bootstrapcdn.com/bootstrap/3.3.2/css/bootstrap.min.css">
<link rel="stylesheet" href="https://netdna.bootstrapcdn.com/font-awesome/3.2.1/css/font-awesome.min.css">
<title>Movie</title>
<style>
#movie-backdrop {
width: 100%;
}
.container {
padding-top: 32px;
}
#actors {
margin: 24px 16px 0 0;
}
</style>
</head>
<body>
<div class="container">
<div class="row">
<div class="col-md-4">
<img id="movie-backdrop">
</div>
<div class="col-md-8">
<h2 id="movie-title"></h2>
<p id="movie-release-date"></p>
<p id="movie-runtime"></p>
<h3>Overview:</h3>
<p id="movie-overview"></p>
</div>
</div>
<h3>Actors:</h3>
<ul id="actors" class="list-unstyled"></ul>
</div>
<script type="text/javascript" src="script.js"></script>
</body>
</html>