About html


Index    HTML tags    Color    Images and Links    Lists    Tables   

HTML- hyper text markup language
tagging and formatting language
most tags are put in angle brackets ( < and> )
every web page starts wirh < html >
and ends with < /html > all heading info is within a <head> tag
with in the <head> tag, put the <title> tag. the tile will show up on the browser tab.
in the body tag put bg color = "#ff0000" gt; (red) the colors can change by the Fs and 0s
the body is where the info goes... what people will see
with almost all html tags there is a starting tag and an ending tag

structure of a simple HTML page


<html >
    <head>
       < title > </title>
   </head>
   <body >
        all page content goes here
   </body>
</html>

other codes

<br/> makes a line break
< hr/> makes a hor. line break
<strong> makes bold text </strong>
<em> makes italic text- stands for emphasis </em>

page created by Mary Blair
Mary-Blair