-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
47 lines (44 loc) · 1.67 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
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta content="width=device-width, initial-scale=1.0" name="viewport">
<!-- FONTS -->
<link href="https://fonts.googleapis.com" rel="preconnect">
<link crossorigin href="https://fonts.gstatic.com" rel="preconnect">
<link href="https://fonts.googleapis.com/css2?family=Inter:wght@400;700;800&display=swap" rel="stylesheet">
<!-- CSS -->
<link href="./css/main.css" rel="stylesheet">
<link href="./favicon/apple-touch-icon.png" rel="apple-touch-icon" sizes="180x180">
<link href="./favicon/favicon-32x32.png" rel="icon" sizes="32x32" type="image/png">
<link href="./favicon/favicon-16x16.png" rel="icon" sizes="16x16" type="image/png">
<link href="./favicon/site.webmanifest" rel="manifest">
<title>Harry Potter</title>
</head>
<body>
<header>
<div class="container">
<h1 class="header__title">Harry Potter</h1>
<p class="header__subtitle">View all characters from the Harry Potter universe</p>
<div class="search-wrapper">
<div class="search__name">
<label class="search__label" for="search__name-input">Name</label>
<input class="search__name-input wand-cursor" id="search__name-input" placeholder="Hermione"
type="text">
</div>
<div class="search__house">
<label class="search__label" for="search__house-selector">House</label>
<select class="search__house-selector wand-cursor" id="search__house-selector" name="choose house">
</select>
</div>
</div>
</div>
</header>
<main>
<div class="container main-wrapper"></div>
<div class="modal-overlay"></div>
<div class="modal-character-wrapper"></div>
</main>
<script src="./js/main.js" type="module"></script>
</body>
</html>