-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
34 lines (30 loc) · 907 Bytes
/
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width">
<link href="style.css" rel="stylesheet" type="text/css">
<link rel="icon" href="favicon.png">
<title>Dad Jokes</title>
</head>
<body>
<section>
<h1 class="title">Random Dad Jokes Generator</h1>
<div class="container">
<div class="joke">
<p id="joke-content"></p>
</div>
<div class="both-buttons">
<button type="button" class="button">Get a Dad Joke</button>
<select class="old-select" id="more-options">
<option value="" selected disabled hidden>More Options</option>
<option value="Copy" id="copy">Copy</option>
<option value="Mail" id="share-mail">Share on Mail</option>
<option value="Twitter" id="share-twitter">Share on Twitter</option>
</select>
</div>
</div>
</section>
<script src="script.js"></script>
</body>
</html>