-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcontent.html
55 lines (55 loc) · 4.1 KB
/
content.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
49
50
51
52
53
54
55
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Folk Tale</title>
<style>
body {
font-family: "Old English Text MT", sans-serif; /* Change font-family to Old English */
font-size: 18px; /* Increase font size */
margin: 0;
padding: 20px;
color: white; /* Change font color to white */
text-align: justify; /* Justify the text */
background-image: url('ft.jpg'); /* Set background image */
background-size: cover; /* Cover entire background */
background-attachment: fixed; /* Fixed background */
background-color: rgba(0, 0, 0, 0.5); /* Background color with transparency */
}
h1 {
text-align: center; /* Center align heading */
}
p {
margin-bottom: 20px; /* Add space between paragraphs */
}
a {
display: block; /* Make link a block element */
text-align: center; /* Center align link */
margin-top: 20px; /* Add space above link */
color: white; /* Link color */
text-decoration: none; /* Remove underline */
border: 1px solid white; /* Add border */
padding: 10px 20px; /* Add padding */
transition: background-color 0.3s, color 0.3s; /* Smooth transition */
}
a:hover {
background-color: white; /* Change background color on hover */
color: black; /* Change text color on hover */
}
</style>
</head>
<body>
<h1>Folk Tale</h1>
<p>Once upon a time in the mystical realm of Eldoria, where magic flowed like rivers and mythical creatures roamed the land, there lived a young heroine named Lyra. Blessed with courage and curiosity, Lyra embarked on a quest to uncover the secrets of the ancient moon goddess, Selene.</p>
<p>Legend spoke of a sacred artifact known as the Moonstone, said to hold the power of the moon itself. Determined to find this artifact and harness its magic, Lyra ventured into the depths of the enchanted forest, where the moon's light danced through the trees like silver threads.</p>
<p>Guided by whispers on the wind, Lyra journeyed through treacherous landscapes and faced formidable foes. Along the way, she encountered allies who shared her quest, including a wise wizard named Arion and a fearless warrior named Thalia.</p>
<p>Together, they traversed through dark caverns and perilous mountains, overcoming trials of strength and wit. Their bond grew stronger with each challenge they faced, forging a fellowship bound by destiny and friendship.</p>
<p>Finally, after months of arduous travel, Lyra and her companions reached the heart of the forest, where the Moonstone lay hidden within the ancient ruins of a forgotten temple. As they stepped into the moonlit chamber, they were met by a spectral figure cloaked in shimmering light the spirit of Selene herself.</p>
<p>"Brave souls," the spirit whispered, her voice echoing like distant thunder. "You have proven yourselves worthy of the Moonstone's power. But remember, with great power comes great responsibility."</p>
<p>With a wave of her hand, Selene summoned the Moonstone from its resting place, its radiance illuminating the chamber with an ethereal glow. Lyra approached the artifact, her heart filled with reverence and awe.</p>
<p>As she reached out to touch the Moonstone, she felt a surge of energy course through her veins, filling her with newfound strength and wisdom. With the artifact in her grasp, Lyra knew that she held the key to unlocking the moon's ancient magic.</p>
<p>Together with her companions, Lyra returned to Eldoria, where they used the Moonstone's power to protect the realm from darkness and despair. And though their journey had been long and perilous, they knew that as long as the moon shone bright in the sky, their adventures would never truly end.</p>
<a href="index.html">Back to the camp fire</a>
</body>
</html>