-
Notifications
You must be signed in to change notification settings - Fork 0
/
movies.html
67 lines (62 loc) · 2.48 KB
/
movies.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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<!-- The above 3 meta tags *must* come first in the head; any other head content must come *after* these tags -->
<!-- Bootstrap -->
<link href="css/bootstrap.min.css" rel="stylesheet">
<nav class="navbar navbar-default navbar-fixed-top">
<header>
<h1>My Website</h1>
</header>
<div class="container">
<ul class="nav navbar-nav">
<li ><a class="navbar-brand" href="index.html">About Me</a></li>
<li ><a class="navbar-brand" href="web experience.html">My Web Experience</a></li>
<li class="active"><a class="navbar-brand" href="movies.html">Movies</a></li>
<li ><a class="navbar-brand" href="assignment.html">About the Assignment</a></li>
<li ><a class="navbar-brand" href="answers.html">Answers</a></li>
<li ><a class="navbar-brand" href="contact.html">Contact</a></li>
</ul>
</div>
</nav>
</head>
<body >
<div class="container">
<div class="row">
<!-- Movies -->
<div class="col-md-5"></div>
<div class="col-md-2" id="Movies">
<button type="button" class="btn btn-primary" disabled>Movies</button>
</div>
<div class="col-md-5"></div>
</div>
<div class="row">
<!-- Movies details -->
<div class="col-md-4">
<iframe src="https://www.youtube.com/embed/vKQi3bBA1y8" frameborder="0" allowfullscreen></iframe>
<br><a href="http://www.imdb.com/title/tt0133093/">IMDB</a>
</div>
<div class="col-md-4">
<iframe src="https://www.youtube.com/embed/nX5PwfEMBM0" frameborder="0" allowfullscreen></iframe>
<br><a href="http://www.imdb.com/title/tt1706620/">IMDB</a>
</div>
<div class="col-md-4">
<iframe src="https://www.youtube.com/embed/xB5ceAruYrI" frameborder="0" allowfullscreen></iframe>
<br><a href="http://www.imdb.com/title/tt0110357/">IMDB</a>
</div>
</div>
</div>
<!-- Latest compiled and minified CSS -->
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.4/css/bootstrap.min.css">
<!-- Latest compiled and minified JavaScript -->
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.4/js/bootstrap.min.js"></script>
<div class="panel-footer">
<p>Created by: Oren Caspi. Contact information: <a href="contact.html">email me</a>.</p></div>
</body>
<style>
body { padding-top: 140px; }
</style>
</html>