-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
91 lines (86 loc) · 3.13 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
80
81
82
83
84
85
86
87
88
89
90
91
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
<script src="https://kit.fontawesome.com/f4d9037195.js" crossorigin="anonymous"></script>
<link rel="stylesheet" href="style.css">
</head>
<body>
<header>
<nav>
<div class="left">
<img src="./logo.png" alt="">
<a href="#">Home</a>
<a href="#">TV Shows</a>
<a href="#">Movies</a>
<a href="#">MyList</a>
</div>
<div class="right">
<i class="fa-solid fa-magnifying-glass"></i>
<a href="#">Kids</a>
<i class="fa-regular fa-bell"></i>
</div>
</nav>
</header>
<main>
<!-- <section>
<h2>Top Movies</h2>
<div>
<article>
<img src="https://images.unsplash.com/photo-1723403804231-f4e9b515fe9d?q=80&w=2070&auto=format&fit=crop&ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D" alt="">
</article>
<article>
<img src="https://images.unsplash.com/photo-1723403804231-f4e9b515fe9d?q=80&w=2070&auto=format&fit=crop&ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D" alt="">
</article>
<article>
<img src="https://images.unsplash.com/photo-1723403804231-f4e9b515fe9d?q=80&w=2070&auto=format&fit=crop&ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D" alt="">
</article>
<article>
<img src="https://images.unsplash.com/photo-1723403804231-f4e9b515fe9d?q=80&w=2070&auto=format&fit=crop&ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D" alt="">
</article>
</div>
</section> -->
</main>
<footer>
<div>
<a href="#">Audio and Subtitles</a>
<a href="#">Media Center</a>
<a href="#">Privacy</a>
<a href="#">Contact Us</a>
</div>
<div>
<a href="#">Audio Description</a>
<a href="#">Investor Relations</a>
<a href="#">Legal Notices</a>
</div>
<div>
<a href="#">Help Center</a>
<a href="#">Jobs</a>
<a href="#">Cookie Preferences</a>
</div>
<div>
<a href="#">Gift Cards</a>
<a href="#">Terms of Use</a>
<a href="#">Corporate Information</a>
</div>
<div>
<a href="#">Ways to Watch</a>
<a href="#">Speed Test</a>
<a href="#">Only on Netflix</a>
</div>
<div>
<a href="#">Netflix Originals</a>
<a href="#">Help Center</a>
<a href="#">Jobs</a>
</div>
<div>
<a href="#">Terms of Use</a>
<a href="#">Contact Us</a>
</div>
</footer>
<script src="events.js"></script>
<script src="script.js"></script>
</body>
</html>