Html Tag Name

Html Tag

Usage

Html tag
< html> < /html>
Container for the webpage.
Body Tag
< body> < /body>
contains video, images, tables,and text in webpage.
Header tag
< header>< /header>
Contains the title, nav bar, css and js links.
Head tag
< head>< /head>
Contains the title, css and js links.
title tag
< title> < /title>
Contains the title for the webpage.
Body Tag
< body> < /body>
contains video, images, tables,and text in webpage.
Navigation Tag
< nav> < /nav>
Holds the links for webpage navigation.
Division Tag
< div id=""> < /div>
Contains a block of text, video or images.
Span Tag
< span class=""> < /span>
this container is usually smaller than a div.
Paragraph Tag
< p> < /p>
Creates a paragraph.
Break Tag
< br />
Creates a line break.
Image Tag
< img src="">
displays an image.
Unordered List
< ul> < li> < / li> < /ul>.
Contains a bulleted list. Items are in between the < li > and < /li >tags.
Ordered List
< ol> < li> < / li> < / ol>.
contains numbered list. Items are in the < li > and < /li >tags.
Link tag
< a href="home.html" >home< /a >.
This link directs one to a page named home.html. Home is underlined in blue.