About html
About HTML
HTML Tags     Color     Images and Links     Lists     Tables   Peru page
every web page starts with
< html >
and ends with < /html >
All heading information is within a <heading tag>
within the <head> tag, put the < title > tag. The title will show up on the browser tab.
HTML =hyper text markup language
-tagging/ formatting language
-most tags in html are put inside angle bracket ex. <>
<br/>=break tag--makes a new line
<br /> --to have a break
<p> to make a new paragraph and use </p> to end a paragraph
structure of a simple html page.
makes a space
  all heading information is within the < head > tag.
The < title > information is within the < head > tag. This is a document title, not a page title.
It will show up on the browser tab
Other html codes
< br/> makes a line break
< hr/>makes a horizontal line
<strong> makes bold texts</strong>
<em> makes italic text--stands for emphasis</em>
< html >
head
title /title
/head
body
all page content goes here
/body
/html
page created by S. Sliva
February 2010