-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
74 lines (73 loc) · 2.43 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Black Mirror on Netflix</title>
<link
rel="stylesheet"
href="https://cdnjs.cloudflare.com/ajax/libs/normalize/8.0.1/normalize.min.css"
integrity="sha512-NhSC1YmyruXifcj/KFRWoC561YpHpc5Jtzgvbuzx5VozKpWvQ+4nXhPdFgmx8xqexRcpAglTj9sIBWINXa8x5w=="
crossorigin="anonymous"
/>
<link rel="stylesheet" href="/dist/css/main.min.css" />
</head>
<body>
<div class="hero">
<h1>Netflix</h1>
<p>& <strong>chill with</strong></p>
<p><span>Black Mirror</span></p>
</div>
<div class="seasons">
<div class="season">
<h2>Season 1</h2>
<p>
An anthology series exploring a twisted, high-tech multiverse where
humanity's greatest innovations and darkest instincts collide.
</p>
</div>
<div class="season">
<h2>Season 2</h2>
<p>
An anthology series exploring a twisted, high-tech multiverse where
humanity's greatest innovations and darkest instincts collide.
</p>
</div>
<div class="season">
<h2>Season 3</h2>
<p>
An anthology series exploring a twisted, high-tech multiverse where
humanity's greatest innovations and darkest instincts collide.
</p>
</div>
<div class="season">
<h2>Season 4</h2>
<p>
An anthology series exploring a twisted, high-tech multiverse where
humanity's greatest innovations and darkest instincts collide.
</p>
</div>
<div class="season">
<h2>Season 5</h2>
<p>
An anthology series exploring a twisted, high-tech multiverse where
humanity's greatest innovations and darkest instincts collide.
</p>
</div>
</div>
<div class="cta">
<div class="cta-text">
<p><span>A Must See</span></p>
<p>
Set in a world only minutes from our own, "Black Mirror" unveils how
modern technologies can backfire and be used against their makers,
every episode set in a slightly different reality with different
characters combating different types of technologies.
</p>
<a href="https://www.netflix.com/" class="btn" target="_blank"
>Watch Now</a
>
</div>
</div>
</body>
</html>