HTML Tags Flashcards
<h1></h1>
<h2></h2>
<h3></h3>
Heading styles in decreasing sizes.
<p></p>
A paragraph separated with a line above and below.
<a></a>
Anchor tag defining a hyperlink with locating parameters. e.g. <a>Visit W3Schools.com!</a>.
<ol> </ol>
Defines an ordered list. (numbers).
<ul></ul>
Defines an ordered list (bullet points).
<li>
</li>
Defines as individual list item.
<div></div>
Creates a division of a page into separate areas each which can be referred to uniquely by name.
< title >
Defines the the text that appears with the tab or window heading area.
< head >
Defines the browser tab or window heading area.
< link >
This is used to link to a css stylesheet.
< body >
Defines the content in the main browser content area..
< html >
All the code is written within these tags is interpreted as HTML.