-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
79 lines (72 loc) · 3.08 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
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
<!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">
<title>Braven</title>
<link href="https://fonts.googleapis.com/css?family=Roboto:400,700,900" rel="stylesheet">
<link rel="stylesheet" href="./css/settings/sizes.css">
<link rel="stylesheet" href="./css/settings/colors.css">
<link rel="stylesheet" href="./css/generics/normalize.css">
<link rel="stylesheet" href="./css/base/index.css">
<link rel="stylesheet" href="./css/objects/container-braven.css">
<link rel="stylesheet" href="./css/objects/more-info.css">
<link rel="stylesheet" href="./css/components/header-braven.css">
<link rel="stylesheet" href="./css/components/menu-braven.css">
<link rel="stylesheet" href="./css/components/featured-braven.css">
<link rel="stylesheet" href="./css/components/legend-braven.css">
<link rel="stylesheet" href="./css/components/information-braven.css">
</head>
<body>
<main class="container-braven">
<header class="header-breaven">
<h1 class="title">Braven</h1>
<nav class="menu-braven">
<a href="#menu" class="menu">Menu</a>
<ul id="menu" class="items">
<li class="item">
<a href="" class="action">Cast</a>
</li>
<li class="item">
<a href="" class="action">Technical Specs</a>
</li>
<li class="item">
<a href="" class="action">User reviews</a>
</li>
</ul>
</nav>
</header>
<section class="featured-braven">
<a href="https://www.youtube.com/watch?v=hOwIQNA9A8I" class="action">Watch trailer on YouTube</a>
<h1 class="title">Watch trailer</h1>
<h2 class="subtitle"> <strong>IMDb</strong><span class="star"></span>6.4<small>/10</small></h2>
</section>
<aside class="legend-braven">
<h1 class="title">They threatened his world</h1>
<h2 class="subtitle">He will destroy theirs</h2>
</aside>
<ul class="information-braven">
<li class="item">
<h3 class="title">Country:</h3>
<p class="information">Canada</p>
</li>
<li class="item">
<h3 class="title">Language:</h3>
<p class="information">English</p>
</li>
<li class="item">
<h3 class="title">Release Date:</h3>
<p class="information">22 Feb 2018</p>
</li>
<li class="item">
<h3 class="title">Filming Locations:</h3>
<p class="information">Newfoundland, Canada</p>
</li>
</ul>
<a href="#info" class="more-info">More info</a>
</main>
<script src="js/components/menu-braven.js"></script>
<script src="js/components/information-braven.js"></script>
</body>
</html>