"> Best Practices for HTML "> Best Practices for HTML ">
<!DOCTYPE html>
<html lang="en">

<head>
    <meta charset="UTF-8" />

    <meta name="description" content="A modern webpage following best practices." />
    <meta name="author" content="Your Name" />
    <meta name="robots" content="index, follow" />

    <meta name="viewport" content="width=device-width, initial-scale=1.0" />

    <title>Best Practices for HTML</title>

    <!-- Local CSS -->
    <link rel="stylesheet" href="styles.css" />

    <!-- Favicon -->
    <link rel="icon" type="image/png" sizes="32x32" href="favicon-32x32.png" />
    <link rel="icon" type="image/x-icon" href="favicon.ico" />
    <link rel="apple-touch-icon" sizes="180x180" href="apple-touch-icon.png">
</head>

<body>
    <!-- Page content -->

    <!-- Main script as module -->
    <script type="module" src="script.js"></script>
</body>

</html>