-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmuggle.html
76 lines (64 loc) · 2.22 KB
/
muggle.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
73
74
75
76
<!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" />
<title>Humans</title>
<!-- Bootstrap v5.3.2 -->
<link
href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css"
rel="stylesheet"
integrity="sha384-T3c6CoIi6uLrA9TneNEoa7RxnatzjcDSCmG1MXxSR1GAsXEV/Dwwykc2MPK8M2HN"
crossorigin="anonymous"
/>
<!-- My personal JS file for designing the logic-->
<script async defer src="js-files/muggle_process.js"></script>
<!-- My personal CSS link -->
<link rel="stylesheet" type="text/css" href="styles/muggle_style.css" />
<!-- Google fonts -->
<link
href="https://fonts.googleapis.com/css2?family=Piazzolla:ital,wght@0,300;1,400&display=swap"
rel="stylesheet"
/>
</head>
<body id="welcome-human">
<div id="human-info">
<h1 class="title">Hello Human!</h1>
<label for="username">Your name is </label>
<!-- input box for the human's name -->
<input type="text" id="username" autocomplete="name" />
<button type="button" class="btn btn-danger" id="save-username">
Save
</button>
<!-- welcomes the human -->
<p id="welcome-message"></p>
<!-- quote of the day displayed from API -->
<p id="quote-of-the-day"></p>
<!-- author or the quote displayed from API -->
<p id="author"></p>
</div>
<footer>
<!-- button to go back to welcome.html page -->
<button type="button" class="btn btn-danger" id="go-back">Return</button>
<p id="credits">
Man standing on a rock at the beach photo by
<a
class="foot"
href="https://unsplash.com/@kyllik?utm_source=unsplash&utm_medium=referral&utm_content=creditCopyText"
target="_blank"
>
Kylli Kittus
</a>
on
<a
class="foot"
href="https://unsplash.com/s/photos/immigrant?utm_source=unsplash&utm_medium=referral&utm_content=creditCopyText"
target="_blank"
>
Unsplash
</a>
</p>
</footer>
</body>
</html>