-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
59 lines (57 loc) · 2.05 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
59
<!DOCTYPE html>
<html lang="en">
<head>
<title>Yas, Queen! | Profiles</title>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="author" content="Lucas Araujo">
<meta name="description" content="Home page of Thiago Balera, musician, instrumentalist and vocalist">
<meta name="keywords" content="thiago balera home musician instrumentalist vocalist">
<!--link to Google Fonts API-->
<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=Playfair+Display&family=Raleway:ital@0;1&family=Nunito:wght@800;900;1000&display=swap" rel="stylesheet">
<!--link to external CSS stylesheet-->
<link href="style.css" rel="stylesheet">
</head>
<body>
<header>
<a href="#" id="logo">
<img src="img/logo.png" alt="Yas, Queen!">
</a>
<h1>Your source for all things drag!</h1>
</header>
<div class="container-wrapper">
<div class="filters">
<!-- Search by name dropdown -->
<label for="searchByNameDropdown">Choose your Queen:</label>
<select id="searchByNameDropdown">
<option value="">All Queens</option>
</select>
<br><br>
<!-- Search by name -->
<label for="searchByName">Search by Name:</label>
<input type="text" id="searchByName" placeholder="Enter name...">
<br><br>
<!-- Search by season -->
<label for="searchBySeason">Search by Season:</label>
<select id="searchBySeason">
<option value="">All Seasons</option>
</select>
<br><br>
<!-- Search by state -->
<label for="searchByState">Search by State:</label>
<select id="searchByState">
<option value="">All States</option>
</select>
</div>
<div class="container" id="dragQueensContainer">
<!-- Drag queens will be dynamically added here -->
</div>
</div>
<footer>
<p>© 2024 Yas, Queen! All rights reserved.</p>
</footer>
<script src="script.js"></script>
</body>
</html>