-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
161 lines (133 loc) · 4.05 KB
/
index.html
File metadata and controls
161 lines (133 loc) · 4.05 KB
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
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
<!DOCTYPE html>
<html lang="pt_br">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="shortcut icon" href="./assets/IMG/Icon.png" type="image/x-icon">
<link rel="stylesheet" href="./assets/SASS/main.css">
<title>Netflix</title>
</head>
<body>
<header id="headerMenu">
<div class="dropMenu">
<div class="line1"></div>
<div class="line2"></div>
<div class="line3"></div>
</div>
<div class="mapWeb">
<img id="brandLogo" src="./assets/IMG/logo.svg" alt="Branding logo">
<nav id="menu">
<ul>
<a href="#">
<li>
Inicio
</li>
</a>
<a href="#">
<li>
Séries
</li>
</a>
<a href="#">
<li>
Filmes
</li>
</a>
<a href="#">
<li>
Bombando
</li>
</a>
<a href="#">
<li>
Minha Lista
</li>
</a>
</ul>
</nav>
</div>
<div class="accountInfo">
<img id="search" src="./assets/IMG/lupa.png" alt="">
<a href="#">Infantil</a>
<img id="notification" src="./assets/IMG/notification.png" alt="">
<img id="profile" src="./assets/IMG/Profile.jpg" alt="">
<img id="arrowAccount" src="./assets/IMG/arrow.png" alt="">
</div>
</header>
<main>
<div id="poster">
<img id="posterIMG" src="./assets/IMG/moviesPoster/batman.png" alt="Batman">
<h1 id="titlePoster">THE BATMAN</h1>
<div id="ageDescription">
<img id="age" src="./assets/IMG/age/sixten.png" alt="sixten">
</div>
<div class="btnPoster">
<button id="watchBtn">
<img src=".//assets/IMG/play.png" alt="assistir">
Assistir
</button>
<button id="moreInfoBtn">
<img src="./assets/IMG/info.png" alt="informações">
Informações
</button>
</div>
</div>
<div class="moviesCarrossel">
<legend id="legendAlta"> <span id="legendSpan">Em alta</span></legend>
<section id="sectionCard">
<div class="arrowRight">
<img src="./assets/IMG/right.png" alt="">
</div>
<div class="arrowLeft">
<img src="./assets/IMG/left.png" alt="">
</div>
<div class="carrossel" id="inRated">
</div>
</section>
</div>
<div class="moviesCarrossel">
<legend id="legendAlta"> <span id="legendSpan">Drama</span></legend>
<section id="sectionCard">
<div class="arrowRight" id="arrowRightDrama">
<img src="./assets/IMG/right.png" alt="">
</div>
<div class="arrowLeft" id="arrowLeftDrama">
<img src="./assets/IMG/left.png" alt="">
</div>
<div class="carrossel" id="drama">
</div>
</div>
</section>
</div>
<div class="moviesCarrossel">
<legend id="legendAlta"> <span id="legendSpan">Ação</span></legend>
<section id="sectionCard">
<div class="arrowRight" id="arrowRightAction">
<img src="./assets/IMG/right.png" alt="">
</div>
<div class="arrowLeft" id="arrowLeftAction">
<img src="./assets/IMG/left.png" alt="">
</div>
<div class="carrossel" id="action">
</div>
</section>
</div>
<div class="moviesCarrossel">
<legend id="legendAlta"> <span id="legendSpan">Horror</span></legend>
<section id="sectionCard">
<div class="arrowRight" id="arrowRightHorror">
<img src="./assets/IMG/right.png" alt="">
</div>
<div class="arrowLeft" id="arrowLeftHorror">
<img src="./assets/IMG/left.png" alt="">
</div>
<div class="carrossel" id="horror">
</div>
</section>
</div>
</main>
<script src="https://cdn.jsdelivr.net/npm/axios/dist/axios.min.js"></script>
<script src="./assets/JS/main.js"></script>
</body>
</html>