osob.de Unicorn Logo
Blogpost overview

Basic HTML Structure | 12.03.2021

Because I already searched several times for a real basic HTML5 structure, here it comes:

<!DOCTYPE html>
<html lang="en">
    <head>
        <meta charset="utf-8">
        <meta name="viewport" content="width=device-width, initial-scale=1">
        <title></title>        
        <link rel="stylesheet" type="text/css" href="assets/css/style.css">    
    </head>
    <body>
            
    </body>
</html>

Some more examples

In the following there are a few more examples which I use from time to time.

You like what you find here? A donation helps to keep this project running.

Basic HTML Structure with mini.css

<!DOCTYPE html>
<html lang="en">
    <head>
        <meta charset="utf-8">
        <meta name="viewport" content="width=device-width, initial-scale=1">
        <title></title>        
        <link rel="stylesheet" type="text/css" href="https://cdnjs.cloudflare.com/ajax/libs/mini.css/3.0.1/mini-default.min.css">
        <link rel="stylesheet" type="text/css" href="assets/css/style.css">    
    </head>
    <body>
            
    </body>
</html>