HTML Learning for Web Developers
Full Stack Development
2/6/2026
HTML Learning for Web Developers
What is HTML? How Websites Work
HTML website ka basic structure hota hai. Browser HTML file ko read karta hai aur user ko page show karta hai.
<!DOCTYPE html>
<html>
<head>
<title>My First Page</title>
</head>
<body>
<h1>Hello HTML</h1>
</body>
</html>
HTML Structure & Tags
HTML tags content ko define karte hain jaise head, body, heading, paragraph.
<html>
<head><title>Structure</title></head>
<body><p>Content here</p></body>
</html>
Headings, Paragraphs & Lists
Headings SEO ke liye important hoti hain aur lists content ko readable banati hain.
<h1>Main Title</h1>
<p>This is a paragraph</p>
<ul>
<li>HTML</li>
<li>CSS</li>
</ul>
Links & Images
Links navigation ke liye aur images visual content ke liye use hoti hain.
<a href="https://example.com">Visit Site</a>
<img src="img.jpg" alt="image">
Tables & Forms
Tables data show karti hain aur forms user se input leti hain.
<form>
<input type="email" placeholder="Email">
<button>Submit</button>
</form>
Semantic HTML
Semantic tags SEO aur accessibility improve karte hain.
<header>Header</header>
<main>Main</main>
<footer>Footer</footer>
Mini Project – Profile Page
Basic HTML use karke apni personal profile page banana.
<h1>Your Name</h1>
<p>Web Developer</p>