0% found this document useful (0 votes)
3 views2 pages

HTML Tags Notes

This document provides a quick reference guide to HTML tags, outlining their basic structure, text formatting, links and media, lists, tables, forms, semantic tags, and other miscellaneous tags. It includes essential tags such as <html>, <head>, <body>, <a>, <img>, <table>, and <form>. The notes serve as a concise overview for users familiarizing themselves with HTML syntax and usage.

Uploaded by

abeelkhan2015
Copyright
© All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
3 views2 pages

HTML Tags Notes

This document provides a quick reference guide to HTML tags, outlining their basic structure, text formatting, links and media, lists, tables, forms, semantic tags, and other miscellaneous tags. It includes essential tags such as <html>, <head>, <body>, <a>, <img>, <table>, and <form>. The notes serve as a concise overview for users familiarizing themselves with HTML syntax and usage.

Uploaded by

abeelkhan2015
Copyright
© All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd

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

You might also like