-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
45 lines (40 loc) · 1.34 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
<!DOCTYPE html>
<html lang="es">
<title>Jokes' API</title>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="assets/css/botton.min.css">
<link rel="stylesheet" href="assets/css/style.css">
<script defer src="js/index.js"></script>
</head>
<body>
<main>
<div class="weather">
</div>
<cite>A joke here</cite>
<!-- buttons -->
<section>
<h2>How bad is this joke?</h2>
<form>
<fieldset>
<input name="animals" type="radio" value="1" id="bad">
<label for="bad">Bad!</label>
<legend class="emoticon">😕</legend>
</fieldset>
<fieldset>
<input name="animals" type="radio" value="2" id="normal">
<label for="normal">mmmg</label>
<legend class="emoticon">🤨</legend>
</fieldset>
<fieldset>
<input name="animals" type="radio" value="3" id="good">
<label for="good">Good</label>
<legend class="emoticon">😂</legend>
</fieldset>
</form>
</section>
</div>
<button class="more-jokes" type="button">Next bad joke</button>
</main>
</body>
</html>