Every HTML page needs this structure. Without it, nothing works.
<!DOCTYPE html>
<html>
<head>
<title>My Page</title>
</head>
<body>
Salaam, World!
</body>
</html>
<!DOCTYPE html> — tells the browser this is HTML5<html> — root of the page. Everything lives inside this<head> — metadata (not visible on screen)<title> — browser tab title<body> — visible content goes hereHeadings give your page structure and hierarchy. Big title at the top, smaller ones below.
<h1> — Most important heading. One per page.
<h1>Bashi Academy</h1>
<h2> — Section title.
<h2>Our Courses</h2>
<h3> — Sub-section.
<h3>HTML & CSS</h3>
<h4> — Deeper detail.
<h4>What You Will Learn</h4>