- HTML tag: It is the root of the html document which is used to specify that the document is html.
- Head tag: Head tag is used to contain all the head element in the html file. It contains the title, style, meta, … etc tag.
- Body tag: It is used to define the body of html document. It contains image, tables, lists, … etc.
- Title tag: It is used to define the title of html document.
- Paragraph tag: It is used to define paragraph content in html document.
- Emphasis tag: It is used to renders as emphasized text.
- Bold tag: It is used to specify bold content in html document.
- Small (text) tag: It is used to set the small font size of the content.
- Underline tag: It is used to set the content underline.
- Deleted text tag: It is used to represent as deleted text. It cross the text content.
- Anchor tag: It is used to link one page to another page.
- List tag: It is used to list the content.
- Ordered List tag: It is used to list the content in a particular order.
- Unordered List tag: It is used to list the content without order.
- Comment tag: It is used to set the comment in html document. It is not visible on the browser.
Wednesday, 25 December 2019
Main tags of HTML
Hi guys, In this post I like to share the main tags of HTML. As we have learned about writing HTML. When I was referring about HTML I suppose to read an article from geeks for geeks site. (to read the whole article please click here) By inspired from the article I write this.....
Introduction to HTML
HTML stands for Hyper Text Markup Language. It is
used to design web pages using markup language. HTML is the combination
of Hypertext and Markup language. Hypertext defines the link between
the web pages. Markup language is used to define the text document
within tag which defines the structure of web pages. This language is
used to annotate (make notes for the computer) text so that a machine
can understand it and manipulate text accordingly. Most of markup (e.g.
HTML) languages are human readable. Language uses tags to define what
manipulation has to be done on the text.
HTML is a markup language which is used by the browser to manipulate text, images and other content to display it in required format. HTML was created by Tim Berners-Lee in 1991. The first ever version of HTML was HTML 1.0 but the first standard version was HTML 2.0 which was published in 1999.
(got from geeks for geeks website)
From the above text you could get a picture of 'What is html?'. Thank you for geeks for geeks website for a wonderful explanation.
In web world HTML is playing a main role.
So lets start how to write HTML..
To start html we should declare that it is a html5 document
<!doctype html>
It is the starting tag. and it will followed by <html>.
here we should understand tags.
Here I like to list out main tags...
html - it is the tag that saying that it is an html tag and also it is the parent tag for all.
head - it is the second tag and performs like the head of the whole document. it holds all the details of the following web page.
body -This is the tag that contains the whole elements of the web page.
HTML is a markup language which is used by the browser to manipulate text, images and other content to display it in required format. HTML was created by Tim Berners-Lee in 1991. The first ever version of HTML was HTML 1.0 but the first standard version was HTML 2.0 which was published in 1999.
(got from geeks for geeks website)
From the above text you could get a picture of 'What is html?'. Thank you for geeks for geeks website for a wonderful explanation.
In web world HTML is playing a main role.
So lets start how to write HTML..
To start html we should declare that it is a html5 document
<!doctype html>
It is the starting tag. and it will followed by <html>.
here we should understand tags.
html - it is the tag that saying that it is an html tag and also it is the parent tag for all.
head - it is the second tag and performs like the head of the whole document. it holds all the details of the following web page.
body -This is the tag that contains the whole elements of the web page.
Subscribe to:
Posts (Atom)