-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
41 lines (41 loc) · 1.58 KB
/
Copy pathindex.html
File metadata and controls
41 lines (41 loc) · 1.58 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Joke Generator</title>
<link rel="stylesheet" href="src/styles.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=Amatic+SC:wght@400;700&family=Doto:wght@100..900&family=Playwrite+NG+Modern+Guides&display=swap"
rel="stylesheet"
/>
<link href="https://fonts.googleapis.com/css2?family=Amatic+SC:wght@400;700&family=Doto:wght@100..900&family=Kode+Mono:wght@400..700&family=Ojuju:wght@200..800&family=Playwrite+NG+Modern+Guides&display=swap" rel="stylesheet">
<script src="https://cdn.jsdelivr.net/npm/axios@1.6.7/dist/axios.min.js"></script>
</head>
<body>
<div class="container">
<div class="joke-container font1">
<button id="button" class="doto">GENERATE JOKE</button>
<div class="welcome-message" id="welcome-message">
Click the button above to get a pretty bad joke!
</div>
</div>
</div>
<footer>
Coded by <a href="https://github.com/HaideeAC" target="_blank">HÁ</a>,
open source on
<a
href="https://github.com/HaideeAC/8.JokeGenerator-Project"
target="_blank"
>GitHub</a
>
hosted on
<a href="https://ha-jokegenerator.netlify.app/" target="_blank"
>Netlify</a
>
</footer>
<script src="src/index.js"></script>
</body>
</html>