HTML Structure
~10 mins
Task 1: Create a simple html page
<!DOCTYPE html>
<html>
<head>
<title> Page Title </title>
<meta charset="UTF-8">
<meta name="description" content="Learn2Build">
<meta name="keywords" content="HTML, CSS, JavaScript">
<meta name="author" content="Naresh Kumar">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="styles.css">
<script>
// JavaScript
</script>
<style>
/* CSS */
</style>
</head>
<body>
<header>
<nav>
Menu bar
</nav>
</header>
<main>
<aside>
Sidebar
</aside>
<section>
<div >
<p>Page Content</p>
</div>
</section>
<article>
<h1>News </h1>
<p> Latest news ... </p>
</article>
</main>
<footer>
Footer
</footer>
</body>
</html>