Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <!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>
- <!-- Header -->
- <div class="header">
- <img src="https://s3.amazonaws.com/codecademy-content/projects/chore-door/images/logo.svg">
- </div>
- <!-- Title-row -->
- <div class="title-row">
- <img src="https://s3.amazonaws.com/codecademy-content/projects/chore-door/images/star.svg">
- <p class="instructions-title">Instructions</p>
- <img src="https://s3.amazonaws.com/codecademy-content/projects/chore-door/images/star.svg">
- </div>
- <!-- Instructions row -->
- <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"> 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>
- <!-- Creating the 3 doors -->
- <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>
- <!-- Start -->
- <div id="start" class="start-row">Good Luck</div>
- <!-- Linking the javascript code -->
- <script src="script.js" type="text/javascript"></script>
- </body>
- </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement