Tag Set and Purpose: According to Textbook
- HTML: html in <> ... /html in <>-identifies the file as an HTML document to the program opening
- HEAD: head in <> ... /head in <>-identifies the documents head ares, where you can code information about your document, including title
- 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
- BODY: body in <> ... /body in <>-identifies the document's body area, which contailns the Web page contents that appear in the browser window
- PARAGRAPH: p in <>.../p in <>-Defines a paragraph,the basic content unit for web text
Old Style
- META: META Description="..."in <>
- Line break: br or BR in <>
- Horizontal rule: hr or HR in <>
- Image:img src="filemane.jpg" in <>
- List Item: li in <>list item
New Style
- META: meta description="..."in < />
- Line break: br in < />
- Horizontal rule: hr in < />
- Image:img src="filemane.jpg" in < />
- List Item: li in <>,list item,
There