Kaigai Blog living abroad in my twenties

【My Study Note】HTML Template

HTML Programming

HTML Template

<!DOCTYPE html>
<html lang = "en">

<head>
    <meta charset = "utf-8">
    <meta name = "viewport" content = "width=device-width, initial-scale=1.0" >

    <title>This Title</title>
    <meta name = "description" content = "A brief description">
    <meta name = "author" content = "your site name">

    <!-- Open Graph Protocol -->
    <!-- 
    <meta property = "og:title" content = "A brief description">
    <meta property = "og:type" content = "website">
    <meta property = "og:url" content = "https://www.mysite">
    <meta property = "og:description" content = "A brief description">
    <meta property = "og:image" content = "image.png">
    -->

    <!--
    <link rel = "icon" href = "/favicon.ico">
    <link rel = "icon" href = "favicon.svg" type = "image/svg+xml">
    <link rel = "apple-touch-icon" href = "/apple-touch-icon.png">
    -->

    <!-- Include your CSS file here -->
    <link rel = "stylesheet" href = "css/stylesheet">
</head>
<body>
    <header>
        <!-- Add your website name or logo here -->
    </header>
    <nav>
        <!-- Add your website navigation here -->
    </nav>
    <main>
        <!-- Add your main content here -->
    </main>
    <footer>
        <!-- Add copyright notices and other footer content here -->
    </footer>

    <!-- Include your JavaScript Files here -->
    <script src = "js/script.js"></script>
</body>
</html>