About HTML


Main Page       Color       Images and Links       Lists      

HTML- Hyper Text Mark up Language
All HTML is tagging or formatting it provides direction for how information is to be displayed in a web browser
Most tags that you use in HTML are going to be put inside of < angle brackets >
Every Web Page will include an html and an html tag

Other Html Codes


<br /> makes a line break
All other tags are put after the <html>
Within the <head> tag put the <title> tag, the title will show up on the browser tab
Always end your page with body tags and html tags
Every page starts with <html> and ends with </html>
All heading information is within the <head> tag
You can change the color of your webpage by typing <body bgcolor= "#fff00">
<strong> Makes Bold Text </strong>
<em> Makes Itallic Text </em>

Structure of a simple HTML page


<html>
   <head>
    <title> </title>
  </head>

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




Ellie
3/9/10