-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
35 lines (33 loc) · 1.19 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="stylesheet" href="style.css" />
<title>Secure The Vault</title>
<!-- attach js page using script block !!moved to bottom of body for reasons(??)!!-->
</head>
<body>
<!-- Using JavaScript console or the script block within an HTML page to create three variables -->
<!-- The combination of the lock is 10-40-39 -->
<!-- Use three different arithmetic operators that will generate each individual number -->
<div id="vault">
<header>Secure the Vault</header>
<hr />
<section>
<p>
You have received this message because you have been chosen to open an
important vault.<br />
Here is the secret combination:<br />
</p>
<!-- trying to figure out how to import combination from stv.js -->
<!-- I asked ChatGPT4o -->
<div id="combination"></div>
</section>
</div>
</body>
<footer>
<!-- only works when I link script after declaring placeholder variables, I guess? -->
<script src="stv.js"></script>
</footer>
</html>