Tag Set and Purpose: According to Textbook

  1. HTML: html in <> ... /html in <>-identifies the file as an HTML document to the program opening
  2. HEAD: head in <> ... /head in <>-identifies the documents head ares, where you can code information about your document, including title
  3. TITLE: title in <>... /title in <>-formats the document title, which appers in the browser's title bar: search engines use informatin found in the title to help identify page contect and rank pages for seach queries
  4. BODY: body in <> ... /body in <>-identifies the document's body area, which contailns the Web page contents that appear in the browser window
  5. PARAGRAPH: p in <>.../p in <>-Defines a paragraph,the basic content unit for web text

Old Style

  1. META: META Description="..."in <>
  2. Line break: br or BR in <>
  3. Horizontal rule: hr or HR in <>
  4. Image:img src="filemane.jpg" in <>
  5. List Item: li in <>list item

New Style

  1. META: meta description="..."in < />
  2. Line break: br in < />
  3. Horizontal rule: hr in < />
  4. Image:img src="filemane.jpg" in < />
  5. List Item: li in <>,list item,
There