forked from gSchool/mcsp-guessing-game
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
33 lines (33 loc) · 1.33 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>In Class: Basic JS</title>
<link rel="stylesheet" href="style.css">
<script defer src="app.js"></script>
</head>
<body>
<h1>In Class Project: Basic JS</h1>
<h2>Guessing Game</h2>
<!-- <div class="guess-form">
<form action="POST">
<label for="guess">Guess a number between 1 and 10</label>
<input id="guess" type="number" required>
<button type="submit" id="send-guess">Guess</button>
</form>
<div>
<p id="result"></p>
</div>
</div> -->
<div class="info">
<h3>Hints:</h3>
<ul>
<p><li>You will be using the <strong>Chrome console</strong>, <strong>prompt</strong>, and <strong>alert</strong> for your app.</li></p>
<p><li>Make sure you have your Chrome console open (option+cmd+i -or- control+shift+i -or- find the option in the Chrome browser menu)</li></p>
<p><li>Simply refresh the page when you want to re-run your code. Keep in mind that when your code reloads, everything resets, even your variables!</li></p>
<p><li>Pay attention to <strong>in-class instructions</strong>, or look at the <strong>readme.md</strong> for directions</li></p>
</ul>
</div>
</body>
</html>