-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
38 lines (35 loc) · 1.21 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
<html>
<head><link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/normalize/8.0.1/normalize.css">
<link rel="stylesheet" href="index.css">
<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=Karla:wght@400;800&display=swap" rel="stylesheet">
</head>
<body>
<header>
<div class="header-inner">
<img src="./images/pumpkin.png" class="pumpkin-img">
<div>
<h2>Pumpkin's Purrfect...</h2>
<h1>Meme Picker</h1>
</div>
</div>
</header>
<main>
<h3>Select Your Current Emotion</h3>
<div class="controls-container">
<div class="emotion-radios" id="emotion-radios"></div>
<div class="gifs-check">
<label for="gifs-only-option" class="gifs-check-label">Animated GIFs only</label>
<input type="checkbox" id="gifs-only-option">
</div>
<button class="get-image-btn" id="get-image-btn">Get Image</button>
</div>
</main>
<div class="meme-modal" id="meme-modal">
<button class="meme-modal-close-btn" id="meme-modal-close-btn">X</button>
<div id="meme-modal-inner"></div>
</div>
<script src="index.js" type="module"></script>
</body>
</html>