-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
48 lines (46 loc) · 2.13 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
40
41
42
43
44
45
46
47
48
<!DOCTYPE html>
<html>
<head>
<title>Chore Door!</title>
<link href="./style.css" rel="stylesheet" type="text/css">
<link href="https://fonts.googleapis.com/css?family=Work+Sans" rel="stylesheet" type="text/css">
</head>
<body>
<div class='header'>
<img src="https://s3.amazonaws.com/codecademy-content/projects/chore-door/images/logo.svg">
</div>
<div class="title-row">
<img src="https://s3.amazonaws.com/codecademy-content/projects/chore-door/images/star.svg" alt="">
<p class="instructions-title">Instructions</p>
<img src="https://s3.amazonaws.com/codecademy-content/projects/chore-door/images/star.svg" alt="">
</div>
<table class="instructions-row">
<tr>
<td class="instructions-number">1</td>
<td class="instructions-text">Hiding behind one of these doors is the ChoreBot.</td>
</tr>
<tr>
<td class="instructions-number">2</td>
<td class="instructions-text">Your mission is to open all of the doors without running into the ChoreBot.</td>
</tr>
<tr>
<td class="instructions-number">3</td>
<td class="instructions-text">If you manage to avoid the ChoreBot until you open the very last door, you win!</td>
</tr>
<tr>
<td class ="instructions-number">4</td>
<td class="instructions-text">See if you can score a winning streak!</td>
</tr>
</table>
<div class='door-row'>
<img id= 'door1' class='door-frame' src="https://s3.amazonaws.com/codecademy-content/projects/chore-door/images/closed_door.svg">
<img id= 'door2' class='door-frame' src="https://s3.amazonaws.com/codecademy-content/projects/chore-door/images/closed_door.svg">
<img id= 'door3' class='door-frame' src="https://s3.amazonaws.com/codecademy-content/projects/chore-door/images/closed_door.svg">
</div>
<div id="start" class="start-row">
Good luck!
</div>
<script src="script.js" type='text/javascript'>
</script >
</body>
</html>