-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
57 lines (57 loc) · 1.82 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<meta name="description" content="Starter Snowpack App" />
<link rel="stylesheet" href="https://fonts.googleapis.com/css2?family=Material+Symbols+Rounded:opsz,wght,FILL,GRAD@48,400,0,0" />
<link rel="stylesheet" href="https://fonts.googleapis.com/css2?family=Material+Symbols+Outlined:opsz,wght,FILL,[email protected],100..700,0..1,-50..200" />
<link rel="stylesheet" href="./src/css/style.css" />
<title>Netflix Clone</title>
<template id="movie-card">
<div class="movie-card" data-id="">
<a class="movie-anchor" href="/">
<img class="movie-img" src="" />
</a>
<div class="movie-info">
<p class="movie-title"></p>
<p class="movie-rating"></p>
</div>
<p class="movie-genre"></p>
</div>
</template>
</head>
<body>
<header>
<navbar>
<a href="index.html">
<h1>NETFLAX</h1>
</a>
<div class="favorite-box">
<span class="material-symbols-outlined" id="favorite">favorite</span>
</div>
<div class="box">
<form action="" id="search-form">
<input
type="text"
name="search"
class="search-input"
onmouseout="this.value = ''; this.blur();"
autocomplete="off"
/>
</form>
<span class="material-symbols-rounded">
search
</span>
</div>
</navbar>
</header>
<main>
<div class="cards-container"></div>
</main>
<footer>
© Federico Pregnolato<span class="footer-date"></span>
</footer>
</body>
<script type="module" src="./src/js/main.js"></script>
</html>