-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsecret_key.html
46 lines (37 loc) · 1.36 KB
/
secret_key.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 http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Secret Key</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 script files -->
<!-- 1. JS data file with a list of spells -->
<script src="js-files/list_of_spells.js"></script>
<!-- 2. JS file for designing the logic -->
<script async defer src="js-files/secret_key_process.js"></script>
<!-- My personal CSS link -->
<link rel="stylesheet" type="text/css" href="styles/secret_style.css" />
<!-- Google fonts -->
<link
href="https://fonts.googleapis.com/css2?family=Dancing+Script:wght@700&display=swap"
rel="stylesheet"
/>
</head>
<body id="check-wizard">
<h1 class="title">Cast the spell & enter the gates</h1>
<ul id="cast-spell"></ul>
<p id="muggle-message"></p>
<footer>
<!-- button to go back to welcome.html page -->
<button type="button" class="btn btn-danger" id="go-back">Return</button>
</footer>
</body>
</html>