HTML TAGS – QUICK NOTES
Basic Structure
<html> – Root tag
<head> – Meta information
<body> – Visible content
Text Tags
<h1> to <h6> – Headings
<p> – Paragraph
<br> – Line break
<hr> – Horizontal line
<b>, <i>, <u> – Bold, Italic, Underline
Links & Media
<a> – Hyperlink
<img> – Image
<audio> – Audio file
<video> – Video file
Lists
<ul> – Unordered list
<ol> – Ordered list
<li> – List item
Tables
<table> – Table
<tr> – Table row
<th> – Header cell
<td> – Data cell
Forms
<form> – Form container
<input> – Input field
<textarea> – Multi-line text
<select> – Dropdown
<button> – Button
Semantic Tags
<header>, <nav>, <section>, <article>, <aside>, <footer>
Other Tags
<div> – Block container
<span> – Inline container
<iframe> – Embed page
<script> – JavaScript
<style> – CSS