-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
81 lines (65 loc) · 3.54 KB
/
Copy pathindex.html
File metadata and controls
81 lines (65 loc) · 3.54 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<!-- Primary meta tags -->
<title>PlayFlix - Stream Movies from Around the World</title>
<meta name="title" content="PlayFlix - Stream Movies from Around the World" />
<meta name="description" content="Discover and stream movies from all over the world on PlayFlix. A global platform for diverse entertainment, offering films from various genres and cultures, anytime and anywhere." />
<!-- Open Graph / Facebook -->
<meta property="og:type" content="website" />
<meta property="og:url" content="https://playflix-three.vercel.app/" />
<meta property="og:title" content="PlayFlix - Stream Movies from Around the World" />
<meta property="og:description" content="Discover and stream movies from all over the world on PlayFlix. A global platform for diverse entertainment, offering films from various genres and cultures, anytime and anywhere." />
<meta property="og:image" content="https://i.ibb.co/qxvMzVP/Playflix.png" />
<!-- Twitter -->
<meta property="twitter:card" content="summary_large_image" />
<meta property="twitter:url" content="https://playflix-three.vercel.app/" />
<meta property="twitter:title" content="PlayFlix - Stream Movies from Around the World" />
<meta property="twitter:description" content="Discover and stream movies from all over the world on PlayFlix. A global platform for diverse entertainment, offering films from various genres and cultures, anytime and anywhere." />
<meta property="twitter:image" content="https://i.ibb.co/qxvMzVP/Playflix.png" />
<!-- favicon -->
<link rel="shortcut icon" href="./favicon.svg" type="image/svg+xml" />
<!-- google font link -->
<link rel="preconnect" href="https://fonts.googleapis.com" />
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
<link href="https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;700&display=swap" rel="stylesheet" />
<!-- custom css link -->
<link rel="stylesheet" href="./assets/css/style.css" />
<!-- custom js link -->
<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/hoo.svg" width="140" height="32" alt="PlayFlix home" />
</a>
<div class="search-box" search-box>
<div class="search-wrapper" search-wrapper>
<input type="text" name="search" aria-label="search movies" placeholder="Search any movies..."
autocomplete="off" class="search-field" 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>
<div class="search-btn" search-toggler menu-close>
<img src="./assets/images/search.png" width="24" height="24" alt="open search box" />
</div>
<button class="menu-btn" menu-btn menu-toggler>
<img src="./assets/images/menu.png" width="24" height="24" alt="open menu" class="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>