HTML Tags
<html> -- All code enclosed within these tags is interpreted as HTML.
<body> -- Defines the content in the main browser content area.
<head> -- Defines the browser tab or windows heading area.
<title> -- Defines the text that appears with the tab or window heading area.
<h1>, <h2>, <h3> -- Heading styles in decreasing sizes.
<p> A paragraph separated with a line space above and below.
<img> Self closing image tag with parameters: <img src = location, height=x, width=y>
<a> -- Anchor tag defining a hyperlink with location parameter: <a href="location"> Link Text </a>
<ol>, <ul> -- Defines an ordered (numbered) or unordered (bulleted) list.
<li> -- Defines an individual list item within either a numbered or bulleted list.
Comments
Post a Comment