-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
72 lines (48 loc) · 2.09 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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>vewy sowwy</title>
<link rel="stylesheet" href="css/style.css">
<link href="https://fonts.googleapis.com/css?family=Press+Start+2P" rel="stylesheet">
</head>
<body>
<audio autoplay>
<source src="audio/KirbyBossTheme.mp3" type="audio/mpeg">
Your browser does not support the audio element.
</audio>
<main class="full-size-box">
<div class="parent">
<div class="child thought-bubble">
<p id="speech" class="fancy-font">
>I'm vewy sowwy
Will you accept the apology?</p>
</div>
<div class="kirby-group">
<div class="kirby__wrapper">
<div class="kirby__shoe--left"></div>
<div class="kirby__shoe--right"></div>
<div class="kirby__arm kirby__arm--left"></div>
<div class="kirby__arm kirby__arm--right"></div>
<div class="kirby">
<div class="kirby__face">
<div class="kirby__eyebrow kirby__eyebrow--left"></div>
<div class="kirby__eyebrow kirby__eyebrow--right"></div>
<div class="kirby__eye kirby__eye--left"></div>
<div class="kirby__eye kirby__eye--right"></div>
<div class="kirby__mouth"></div>
<div class="kirby__blush kirby__blush--left"></div>
<div class="kirby__blush kirby__blush--right"></div>
</div>
</div>
</div>
</div>
<div class="button-wrapper">
<button class="cute-button yes-button fancy-font">Yes</button>
<button class="cute-button no-button fancy-font">No</button>
</div>
</div>
</main>
<script src="js/main.js"></script>
</body>
</html>