Advertisement
makispaiktis

Codecademy - 3rd Exercise - Forms (Story HTML)

Aug 26th, 2019 (edited)
409
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 5 0.76 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html lang="en" dir="ltr">
  3.   <head>
  4.     <meta charset="utf-8">
  5.     <title>Completed Story</title>
  6.     <script type="text/javascript" src="main.js" defer></script>
  7.     <link rel="stylesheet" href="style.css">
  8.   </head>
  9.   <body>
  10.     <section id="top">
  11.       <img src="https://s3.amazonaws.com/codecademy-content/courses/learn-html-forms/formAStoryLogo.svg" alt="Form A Story Logo">
  12.     </section>
  13.     <section id="main">
  14.       <h1 id="title"></h1>
  15.       <article id="story"></article>
  16.       <h2 id="moral">Moral of the story:</h2>
  17.       <article id="moral-message"></article>
  18.       <hr>
  19.       <a href="index.html">Start Over!</a>
  20.       <span> || </span>
  21.       <a href="original.html">Original Story</a>
  22.     </section>
  23.  
  24.   </body>
  25. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement