-
Notifications
You must be signed in to change notification settings - Fork 7
/
index.html
58 lines (45 loc) · 1.96 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>TV Movie</title>
<meta name="title" content="Tvflix" />
<meta name="description" content="Tvflix is a popular movie app." />
<link rel="shortcut icon" href="./assets/images/tv movie.png" type="image/svg+xml" />
<link rel="stylesheet" href="./assets/css/style.css" />
<script src="./assets/js/global.js" defer></script>
<script src="./assets/js/index.js" type="module"></script>
</head>
<body>
<!-- Header -->
<header class="header">
<a href="./index.html" class="logo">
<img src="./assets/images/logo2.png" width="140" height="32" alt="Tvflix home" />
</a>
<div class="search-box" search-box>
<div class="search-wrapper" search-wrapper>
<input type="text" name="search" placeholder="Search any movies..." class="search-field"
aria-label="search movies" autocomplete="off" search-field />
<img src="./assets/images/search.png" width="24" height="24" alt="search" class="leading-icon" />
</div>
<button class="search-btn" search-toggler>
<img src="./assets/images/close.png" width="24" height="24" alt="close search box" />
</button>
</div>
<button class="search-btn" search-toggler menu-close>
<img src="./assets/images/search.png" width="24" height="24" alt="open search box" />
</button>
<button class="menu-btn" menu-btn menu-toggler>
<img src="./assets/images/menu.png" class="menu" width="24" height="24" alt="open menu" />
<img src="./assets/images/menu-close.png" width="24" height="24" alt="close menu" class="close" />
</button>
</header>
<main>
<!-- Sidebar -->
<nav class="sidebar" sidebar></nav>
<div class="overlay" overlay menu-toggler></div>
<article class="container" page-content></article>
</main>
</body>
</html>