-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
27 lines (25 loc) · 1.48 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
<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">
<link rel="stylesheet" type="text/css" href="https://meilune.github.io/joke-teller/style.css">
<title>Octopus Joke Teller</title>
<link rel="icon" type="image/x-icon" href="https://meilune.github.io/joke-teller/uploads/jokepuss.png"/>
</head>
<body>
<div class="lottie-info">
<!-- Lottie graphics for the website -->
<lottie-player src="https://assets9.lottiefiles.com/packages/lf20_JO4FIR.json" background="transparent" speed="1" style="width: 200px; height: 200px;" loop autoplay class="bubbles"></lottie-player>
<lottie-player src="https://assets6.lottiefiles.com/private_files/lf30_d4xlubji.json" background="transparent" speed="1" style="width: 600px; height: 600px;" loop autoplay class="octopus"></lottie-player>
<!-- COnversation bubbles -->
<div class="speech-bubble">
<button class="conversation" id="button">Tell me a joke</button>
</div>
<audio id="audio" controls hidden></audio>
</div>
<script src="https://unpkg.com/@lottiefiles/lottie-player@latest/dist/lottie-player.js"></script>
<script type="text/javascript" src="https://meilune.github.io/joke-teller/app.js"></script>
</body>
<footer class="footer-stuff">Check out more of my projects at <a href="https://codingginja.com">codingGinja</a></footer>
</html>