-
Notifications
You must be signed in to change notification settings - Fork 0
/
randomCompliments.html
31 lines (23 loc) · 991 Bytes
/
randomCompliments.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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width">
<title>Random Compliments from a llama</title>
<link href="style.css" rel="stylesheet" type="text/css" />
</head>
<body>
<div id="gameArea">
<h1> Random Compliments from a llama</h1>
<div id="result"> __________________________ </div>
<div class="picture"><img src="https://www.naesp.org/wp-content/uploads/2023/08/Llama-scaled.jpeg" alt="llama">
</div>
<button onclick="randomCompliments()" id="generate"> Generate </button>
<div> <a href="index.html"> <button id="select"> Back to Select Screen</button></a> </div>
<a href="https://www.verywellmind.com/positivity-boosting-compliments-1717559"> <button id="source"> Source of the
compliments</button></a>
<a href="https://www.naesp.org/blog/lead-like-a-llama/"> <button id="source"> Source of the llama</button></a>
</div>
<script src="script.js"></script>
</body>
</html>