Szkielet projektu HTML

Podstawowy szkielet strony

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8" />
    <title>Document</title>
</head>
<body>
    
</body>
</html>

Rozbudowany szkielet strony

<!DOCTYPE html>
<html lang="en">
<head>
    <!-- Site settings -->
    <meta charset="UTF-8">
    <meta http-equiv="X-UA-Compatible" content="IE=edge">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">

    <!-- Site title -->
    <title>Document</title>

    <!-- SEO Informations -->
    <meta name="description" content="Site Description">
    <meta name="keywords" content="keywords">
    <meta name="author" content="@Author">

    <!-- Font (fonts.google.com) (poppins included) -->
    <link rel="preconnect" href="https://fonts.googleapis.com">
    <link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
    <link href="https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap" rel="stylesheet">

    <!-- Custom CSS styles -->
    <link rel="stylesheet" href="">
</head>
<body>

    <!-- JS Scripts -->
    <script src=""></script>
</body>
</html>

Last updated