HTML Codes
Boilerplate template
First HTML code is here
Type
This is Boilerplate Code for HTML pages with all accorate details.
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title><!-- Project Name Here --></title>
<link rel="stylesheet" href="style.css">
<!-- Add the name of your CSS file here is the name of the CSS file you created for this project. If you haven't created a CSS file yet,
<link rel="icon" type="image/png" sizes="32x32" href="/logo.png" />
<link rel="icon" type="image/png" sizes="16x16" href="/logo.png" />
<!-- The above two lines add a favicon to your website. You can replace "/logo.png" with the path to your own favicon image. -->
</head>
<body>
<header>
<nav>
<!-- Add your navigation links here -->
</nav>
</header>
<section>
<!-- Add your section content here -->
</section>
<main>
<!-- Add your main content here -->
</main>
<footer>
<!-- Add your footer content here -->
</footer>
<script src="script.js"></script>
<!-- This line is where you can add the path to your JavaScript file if you have one. If you don't have a JavaScript file, you can remove this line. -->
</body>
</html>