Basic-HTML-Full-Notes
Basic-HTML-Full-Notes
Lesson – 1
Hyper Text Markup Language (H.T.M.L)
What is HTML?
HTML is a language used for describing web pages.
Writing HTML
In this tutorial we use a plain text editor (like Notepad) to edit HTML. This is a good way to
learn HTML.
You cannot be sure exactly how HTML will be displayed. Large screens, small screens, and
resized browser windows will create different results.
With HTML, you cannot change the output by adding extra spaces or extra lines in your
HTML code.
The browser will remove extra spaces and extra lines when the page is displayed. Any
numbers of lines count as one space, and any number of spaces count as one space.
Lesson – 2
Basic HTML Tags
If you look up the basic HTML tags in the reference below, you will see that the reference contains
additional information about tag attributes.
You will learn more about HTML tag attributes in the next chapter of this tutorial.
Tag Description
<html> Define an HTML document
HTML Headings
Headings are defined with <h1> to <h6> tags. <h1> defines the largest heading. <h6> define the
smallest heading.
HTML Paragraphs
Paragraph is defined with the <p> tag.
<p> This is <br> a para <br> graph with line breaks </p>
Lesson – 3
Example of: Pre- formatted text <pre> tag in
“Notepad” like as:-
Lesson – 4
Example of:- Background color (bg color) in Notepad
Like as:-
Lesson – 5
Example of: Font Size, Font Face & Font Color <font
size=, Face=, Color=> tag in “Notepad” like as:-
Lesson – 6
Example of: Image Linking <img src> tag in “Notepad”
like as:-
Lesson – 7
Example of: Form Designing <form action> tag in
“Notepad” like as:-
Lesson – 8
Example of: Simple Table <table> tag in “Notepad”
like as:-
Lesson – 9
Example of: Table Border & Caption <caption=> tag in
“Notepad” like as:-
Example of: Table Spans Column & Rows <th colspan> &
<th rowspan> tag in “Notepad” like as:-
Lesson – 10
Example of: Button Inserting tag in “Notepad” like as:-