-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
46 lines (44 loc) · 1.36 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Compliments</title>
<link
href="https://fonts.googleapis.com/css2?family=Libre+Baskerville&display=swap"
rel="stylesheet"
/>
<link rel="stylesheet" href="./public/styles.css" />
</head>
<body>
<div class="container">
<div class="interactive">
<h1 class="title">Everybody loves feedback...</h1>
<button class="btn request-compliment">😊 Compliment me</button>
<button class="btn request-insult">🔥 Roast me</button>
</div>
<div class="content">
<p class="feedback"></p>
</div>
<p class="copyright">
Quotes borrowed from
<a
href="https://www.happier.com/blog/nice-things-to-say-100-compliments/"
rel="noopener noreferrer"
target="_blank"
>Happier</a
>
and
<a
href="https://www.thegentlemansjournal.com/best-insults-gentlemen-can-give/"
rel="noopener noreferrer"
target="_blank"
>The Gentleman's Journal</a
>.
</p>
</div>
<script src="./public/feedback.js"></script>
<script src="./public/popmotion.global.min.js"></script>
<script src="./public/animation.js"></script>
</body>
</html>