-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmovies.html
92 lines (88 loc) · 2.95 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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<link href="https://fonts.googleapis.com/css?family=Fjalla+One" rel="stylesheet">
<link href="https://fonts.googleapis.com/css?family=Roboto" rel="stylesheet">
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.3.1/css/all.css" integrity="sha384-mzrmE5qonljUremFsqc01SB46JvROS7bZs3IO2EmfFsd15uHvIt+Y8vEf7N7fWAU"
crossorigin="anonymous">
<link rel="stylesheet" href="reset.css">
<link rel="stylesheet" href="media-screen.css">
<link rel="stylesheet" href="style.css">
<title>Document</title>
</head>
<body>
<header>
<div class="header-middle">
<img src="img/Welcome.png" alt="">
</div>
<div class="nav-bar">
<input type="checkbox" id="show-menu" role="button">
<label for="show-menu" class="show-menu">
<i class="fas fa-bars"></i>
</label>
<ul id="menu">
<li class="current">
<a href="index.html">HOME</a>
</li>
<li>
<a href="about.html">ABOUT</a>
</li>
<li>
<a href="movies.html">MOVIES</a>
</li>
<li>
<a href="links.html">LINKS</a>
</li>
<li>
<a href="contact.html">CONTACT</a>
</li>
</ul>
</div>
</header>
<section>
<div class="table-caption">
<i class="fas fa-film"></i><h1>Favorite Movies</h1>
</div>
<div>
<table>
<tr>
<th>Title</th>
<th>Genre</th>
<th>Main Character</th>
<th>Review Score</th>
</tr>
<tr>
<td>The Dark Knight </td>
<td>Action , Crime , Drama</td>
<td>Christian Bale</td>
<td>9.0</td>
</tr>
<tr>
<td>Schindler's List </td>
<td>Biography , Drama , History</td>
<td>Liam Neeson</td>
<td>8.8</td>
</tr>
<tr>
<td>Forrest Gump</td>
<td>Drama , Romance </td>
<td>Tom Hanks</td>
<td>$100</td>
</tr>
<tr>
<td>Inception</td>
<td>Action , Adventure , Sci-Fi </td>
<td>Leonardo DiCaprio</td>
<td>8.8</td>
</tr>
</table>
</div>
</section>
<footer>
<p>Ibo © 2018. All rights reserved.</p>
</footer>
</body>
</html>