About HTML

Index Page     About HTML     Color     Images & Links     Lists     Tables     Probibiscis Monkey    

HTML= Hypertext Markup Language

Tagging language or formatting not computer coding

Most tags are put inside angle brackets (< >)


Use <ANGLE BRACKETS >to make tags
Every web page starts with <HTML> and ends with < /HTML >
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.
Almost all tags have a beginning and an ending

Structure of a simple HTML page

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

<br /> makes a line break
<hr /> makes a horizontal line on the page
<strong> makes makes bold text
<em> makes italic text - stands for emphasis

& nbsp; makes a space
& amp; makes an ampersand
& lt; makes a left angle bracket
& gt; makes a right angle bracket


HTML codes website



Page Created by Austin Patry
February 4, 2010