-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
33 lines (30 loc) · 1.13 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="author" content="Eduardo de la Cruz Palacios" />
<meta name="description" content="Jokes teller" />
<meta name="keywords" content="jokes teller" />
<meta name="copyright" content="Eduardo de la Cruz Palacios" />
<meta name="robots" content="index, follow" />
<title>Jokes teller</title>
<!-- FAVICON https://icons8.com/icon/ivAkqhl7V0Kc/joke -->
<link rel="icon" type="image/png" href="favicon.png">
<!-- CSS -->
<link rel="stylesheet" href="style.css">
<!-- JS -->
<script src="voicerss-tts.min.js" defer></script>
<script src="app.js" defer></script>
<!-- GOOGLE FONTS -->
<link rel="preconnect" href="https://fonts.gstatic.com" />
<link href="https://fonts.googleapis.com/css2?family=Ubuntu&display=swap" rel="stylesheet" />
</head>
<body>
<main>
<button id="button">Tell a joke</button>
<audio id="audio" controls hidden></audio>
</main>
</body>
</html>