Part I- General
A. Definitions
1. Nesting: Tags placed within an affected segment of another tag for multiple effect
2. Special Characters: Special characters are characters which have a meaning in HTML or cannot by typed through keyboard
3. Scrollamount: The number of pixels between moving the text or image
4. Scrolldelay: The time between movement in millisecond
5. Cellpadding: is the space between the content and cell
B. Questions and Answers
1. Tags are reserved words that are between the opening and closing bracket (< and >); Tags are instructions. Attributes are reserved words that define or modify the behavior of a tag. Container tags are tags that come in opening and closing pairs, where the closing tag is differentiated from its opening tag by a forward slash.(Ex-- <body> …</body>) Singleton tags are tags that doesn’t have a closing tag; no pair. (Ex -- <br>, <img>)
2. <body text= “…” bgcolor= “ ” background= “…” topmargin= “…” leftmargin= “…” rightmargin= “…” bottommargin= “…” alink= “…” link= “…” vlink= “…” > ………………………</body>
3. <font color= “…” size= “…” face= “…”> ……………..</font>
4. <img src= “…” alt= “…” width = “ …” height= “…”>
5. <marquee behavior=”alternate” sccrollamount= “100” scrolldelay=”4000”> ………………………………. </marquee>
Part II – List
- Unordered list is a collection of related items that have no special order or sequence. Ordered List is a list where each item is numbered or lettered.
- Advantage à Automatic indentation, line break, and numbers, letters, bullets
- Nested List
<ol type= “I”>
<li> Chapter 1
<ul type= “square”>
<li> Intro to HTML
<li> Simple Example
</ul>
<li> Chapter 2
<ol>
<li>Text Basics
<li>Links and Web
<li>Formatted Lists
</ol>
<li> Chapter 3
<ul type= “circle”>
<li> HTML document Elements
<li> The document Header
<li> The document Body
</ul>
</ol>
Part III—Links
- <a href= “http://comet.lehman.cuny.edu/priya/index.html”> CIS 228 </a>
- <a href=“mailto: ”> <img src=”../image/mail.gif” border= “0” alt= “email”> </a>
- <a href= “#gotohotspot”>intrapage to hotspot</a>
<a name= “gotohotspot”>This is the hotspot</a>
- <a href= “../Introduction.html”> link to Intro page</a>
- <body alink= “gray” link= “pink” vlink= “blue”> …………..</body>
Part IV – Tables and Forms
http://comet.lehman.cuny.edu/priya/ TableandForms.html
Part V – Frames
http://comet.lehman.cuny.edu/priya/frame2.html