boilerplate code for a website code example

Example 1: html boilerplate code

<!DOCTYPE html>
<html lang="en">
    <head>
        <meta charset="UTF-8" />
        <meta name="viewport" content="width=device-width, initial-scale=1.0" />
        <meta
            name="description"
            content="A description of the page and its contents"
        />
        <link rel="stylesheet" href="styles.css" />
        <title>Page Title</title>
    </head>
    <body>
        <header>
            <nav>
                <ul>
                    <li>Home</li>
                    <li>Blog</li>
                </ul>
            </nav>
        </header>
        <main>
            <section>
                <article></article>
            </section>
        </main>
        <script src=""></script>
    </body>
</html>

Example 2: html boilerplate code

<!DOCTYPE html>
<html>
  <head>
  	<meta charset="UTF-8">
  	<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
  	<meta name="viewport" content="width=device-width,initial-scale=1">
    <title>Document</title>
  </head>
  <body>  
  </body>
</html>

Tags:

Html Example