-
Notifications
You must be signed in to change notification settings - Fork 6
/
index.html
39 lines (36 loc) · 1.12 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
36
37
38
39
<!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>
<img src='images/logo.png' height='' alt=''>
<h1>Code-A-Long:</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>your instructor</strong>, or look at the <strong>readme.md</strong> for directions
</li>
</p>
</ul>
</div>
</body>
</html>