HTML5 stuff for blogging

Some links: The basic structure of an HTML page:
<!DOCTYPE html>
<html lang="en">
  <head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>The web site of notsointerestingstuff</title>
    <!-- The style.css file allows you to change the look of your web pages.
         If you include the next line in all your web pages, they will all share the same look.
         This makes it easier to make new pages for your site. -->
    <link href="/style.css" rel="stylesheet" type="text/css" media="all">
  </head>
  <body>
  
  
    <header id="header">
      <h1><a href="/">Notsointerestingstuff</a></h1>
    </header>
    
    <aside id="sidebar">
    </aside>
    
    <main>
      <article class="article-full">
        <header>
          <h2>HTML5 stuff for blogging</h2>
        </header>
        
        Some links:
        <ul>
          <li>Blog accessible avec HTML5: <a href="https://pub.phyks.me/sdz/sdz/creer-un-blog-accessible-avec-html5.html">🔗</a></li>
          <li>Structure d'un document HTML: <a href="https://jaetheme.com/blog/structure-html5/">🔗</a></li>
        </ul>
        
        The basic structure of an HTML page:
        
        <pre>
        
        </pre>
      </article>
    </main>
    	
    <footer id="footer">
              <img src="/neocities.png" alt="Neocities rocks!">
              <a type="application/rss+xml"
                href="https://neocities.org/site/notsointerestingstuff.rss">RSS
              </a>
    </footer>


  </body>
</html>