forked from itscodenation/int-u3l1-23-24-student-exercises
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfairyTale.html
34 lines (21 loc) · 1.48 KB
/
fairyTale.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
<!DOCTYPE html>
<html>
<head>
<title>Magical Creature</title>
<link rel="stylesheet" href="fairyTale.css">
<script defer src="fairyTale.js"></script>
</head>
<body>
<div class="navbar">
<a href="index.html">Do Now</a>
<a href="fairyTale.html">Fairy Tale</a>
</div>
<h1 class="story">✨ A Code Nation Fairytale ✨</h1>
<button>When you're done, press this button</button>
<br>
<!-- DON'T LOOK BELOW HERE!! -->
<div class="story-container">
Once upon a time in a <span class="place"></span>, there was a magical creature named <span class="creature-name"></span>. It had <span class="color"></span> wings and <span class="color-2"></span> eyes. Everyone in the village was <span class="emotion"></span> of it. One day, <span class="character"></span>, a brave villager, decided to approach the creature. To their surprise, <span class="creature-name-again"></span> wasn't dangerous at all! It just wanted <span class="number"></span> pieces of a <span class="item"></span> from the village. So, <span class="character-again"></span> offered it a beautiful <span class="item-2"></span> as a compromise. The creature was so happy, it started <span class="verb"></span>ing around the village. From that day on, the magical creature and the villagers lived <span class="adverb"></span> ever after for <span class="number-2"></span> years. The end.
</div>
</body>
</html>