-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
54 lines (52 loc) · 1.77 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
<!DOCTYPE html>
<html>
<head>
<title>Stealth Quincy Profile</title>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="preconnect" href="https://fonts.gstatic.com" />
<link
href="https://fonts.googleapis.com/css2?family=Mulish&display=swap"
rel="stylesheet"
/>
<link
rel="stylesheet"
href="https://pro.fontawesome.com/releases/v5.10.0/css/all.css"
integrity="sha384-AYmEC3Yw5cVb3ZcuHtOA93w35dYTsvhLPVnYs9eStHfGJvOvKxVfELGroGkvsg+p"
crossorigin="anonymous"
/>
<link rel="stylesheet" href="css/normalize.css" />
<link rel="stylesheet" href="css/styles.css" />
<script src="js/script.js" defer></script>
</head>
<body>
<main class="profile-card">
<header class="switch-container">
<p>Press "l" for Light mode or "d" for Dark mode</p>
</header>
<div class="favorite-quincy">
<label for="subscription">Favorite Quincy:</label>
<select name="favorite" id="favorite">
<option value="regular">Regular Quincy</option>
<option value="stealth">Stealth Quincy</option>
<option value="party">Party Quincy</option>
</select>
</div>
<div class="top"></div>
<div class="bottom">
<figure class="cat">
<img src="img/quincy.jpg" alt="Quincy the cat" />
</figure>
<h1>Quincy</h1>
<h5>Florida</h5>
<footer class="stats">
<p>
<i class="fas fa-user-friends"></i><span class="fans">123K</span>
</p>
<p><i class="fas fa-fish"></i><span class="fish">47K</span></p>
<p><i class="fas fa-paw"></i><span class="pets">20K</span></p>
</footer>
</div>
</main>
</body>
</html>