mat~wiki

My personal wiki

html_guide


/index

/dev/random

This page will teach you how to easily and quickly write a decent looking website from scratch. This guide is intended for people who knows the basics of CSS and HTML and want to write lightweight webpages.

The guide will be based on my way to design websites. You can find examples here

Basic HTML structure

The HTML structure of your website must be easy to read and simple enough to be maintained properly. This is why we are going to use semantic HTML tags like this.

<html>
    <head>
        <title>My new website!</title>
        <!-- We will see more about the head later in the guide. -->
    </head>
    <body>
        <header>
            
        </header>
        <main>
        
        </main>
        <footer>
        
        </footer>
    </body>
</html>

No more divs are required in this page at this point. I suggest that the header and the footer never changes. In the header you can put the title of your site with