HTML

1. It stands for Hypertext Markup Language
2. Markup Language is a language that is human readable and does not contain programming syntax.

HTML TAGS

1. Heading HTML Tag - <h1> <h2> <h3> <h4> <h5> <h6> are the heading tags where h1 is the biggest one while h6 is the smallest.
2. <p> tag - This is known as paragraph tag.
3. break <br/> tag - Line break or create line.
4. Horizontal rule <hr/> tag - Creates a horizontal line.
5. Link/anchor tags <a> - Contains link (target = "_blank") => opens in new tab.
6. Division <div> tag - Creates Division.
7. span <span> tag - use to style the content of webpage.
8. <b> and <strong> tag -Makes text bold.
9. <i> and <em> tag - Makes text italian.
10. <u> tag - use to underline text.
10. <img> tag - adds image.

LISTS IN HTML

Lists in HTML are of two types :-
1. Ordered Lists <ol>
2. Unordered Lists <ul>

ORDERED LISTS

Makes the list in particular order
TYPES OF ORDERED LISTS
1. <ol type = "A" >

2. <ol type = "1" >

3. <ol type = "I" >

4. <ol type = "a" >

5. <ol type = "A" >

6. <ol type = "i" >



UNORDERED LIST

Makes the list in unsequential manner
TYPES OF UNORDERED LISTS
1. <ul type = "disc" >

2. <ul type = "square" >

3. <ul type = "circle" >

4. <ul type = "none" >


next