-
Notifications
You must be signed in to change notification settings - Fork 162
/
index.html
23 lines (23 loc) · 1.01 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
<!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="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>