Introduction To HTML (Hyper Text Markup Language) - A Review Paper
Introduction To HTML (Hyper Text Markup Language) - A Review Paper
net/publication/327861163
CITATIONS READS
0 5,250
2 authors:
Some of the authors of this publication are also working on these related projects:
All content following this page was uploaded by Ankush Sharma on 25 September 2018.
Abstract: HTML is the Standard Markup Language. It is used for developing Web Pages. HTML is Hyper Text Markup Language
and is used for describing the structure of web pages. Various Tags are used in HTML like "heading", "paragraph", "table", and so
on. This paper discusses various HTML tags that are must for developing web pages.
2) An Ordered List:
It starts with the <ol> tag and ends with the </ol> tag. By
default items will use numbers.
<ol>
<li>A</li>
<li>B</li>
<li>C</li>
</ol>
It will be displayed as follows:-
1. A
2. B
3. C