Advertisement
LegoDrifter

HTML semantics

May 5th, 2020
177
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 1.51 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4.     <title>My blog</title>
  5.     <meta name="description" content="Awesome blog by Traversy">
  6.     <meta name="keywords"    content="web design blog,
  7.    web dev blog,traversy media">
  8.     <style>
  9.     #main-header{
  10.     text-align: center;
  11.         background-color: black;
  12.         color: aliceblue;
  13.         padding: 5px;
  14.  
  15.     }
  16.         #main-footer{
  17.             text-align: center;
  18.             font-size: 18px;
  19.         }
  20.  
  21.     </style>
  22.  
  23. </head>
  24. <body>
  25. <header id="main-header">
  26.     <h1>My Website</h1>
  27. </header>
  28. <a href="test.html">Go to test</a>
  29. <section>
  30.     <article class="post">
  31.         <h3>Blog post one</h3>
  32.         <small>Posted by Brad on July 17</small>
  33.         <p>Sample content</p>
  34.         <a href="post.html">Read more</a>
  35.     </article>
  36.     <article class="post">
  37.         <h3>Blog post two</h3>
  38.         <small>Posted by Brad on July 17</small>
  39.         <p>Sample content</p>
  40.         <a href="post.html">Read more</a>
  41.     </article>
  42.     <article class="post">
  43.         <h3>Blog post three</h3>
  44.         <small>Posted by Brad on July 17</small>
  45.         <p>Sample content</p>
  46.         <a href="post.html">Read more</a>
  47.     </article>
  48. </section>
  49. <aside>
  50.     <h3>Categories</h3>
  51.     <nav>
  52.     <ul>
  53.         <li><a href="#">Category 1</a></li>
  54.         <li><a href="#">Category 2</a></li>
  55.         <li><a href="#">Category 3</a></li>
  56.     </ul>
  57.     </nav>
  58. </aside>
  59. <footer id="main-footer">
  60.     <p>Copyright &copy; 2017, My Website</p>
  61. </footer>
  62. </body>
  63. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement