-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
43 lines (40 loc) · 1.53 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
<html>
<head><link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/normalize/8.0.1/normalize.css">
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Meme picker by emotion</title>
<meta name="description" content="This app displays an image or gif of cats depending the emotion that you select">
<meta name="keywords" content="meme, emotion, gif generator, cats, cat pictures">
<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>