Files
codecademy/form_a_story/story.html
2025-07-29 16:14:37 +02:00

26 lines
738 B
HTML

<!DOCTYPE html>
<html lang="en" dir="ltr">
<head>
<meta charset="utf-8">
<title>Completed Story</title>
<script type="text/javascript" src="main.js" defer></script>
<link rel="stylesheet" href="style.css">
</head>
<body>
<section id="top">
<img src="https://content.codecademy.com/courses/learn-html-forms/formAStoryLogo.svg" alt="Form A Story Logo">
</section>
<section id="main">
<h1 id="title"></h1>
<article id="story"></article>
<h2 id="moral">Moral of the story:</h2>
<article id="moral-message"></article>
<hr>
<a href="index.html">Start Over!</a>
<span> || </span>
<a href="original.html">Original Story</a>
</section>
</body>
</html>