Lesson 1
Lesson 2
Lesson 3
Lesson 4
Lesson 5
Lesson 6
Lesson 7
Lesson 8
Lesson 9
Lesson 10
Tips
References
1. How does HTML work? (1pt)
Simple text ASCII documents with tags that mark the begining and end of a specific instruction applied to text or another object. It is just a word processing document with images that can be read by the browser. Small interactive application developed with a text editor.
2. Write the basic tags for a html document in order: (2pt)(Do not use enter nor spaces in your work!)
3. What goes between the <title></title> tags? (1pt)
The subject of the page displayed with the largest heading size. Important invisible information about the page. The string of text that will be displayed in the title bar of the browser's window.
4. Where do scripts, title, and descriptive information about the page go in a document? (1pt)
Between the <body></body> tags. Between the <head></head> tags. Between the <p></p> tags.
5. What are the <body></body> tags for? (1pt)
Hold the code for the visible content of the page. Mark the beginning and the end of a paragraph. Have to be written before using text.
6. What tags were used to make the following example? (1pt)
"THE EXAMPLE"
<p1></p1> <t1></t1> <h1></h1>
7. The <p> tag is to make a break in the text between paragraphs. (1pt)
TRUE FALSE
8. The <br> tag is for preformatted text. (1 pt)
9. What tags were used to make the following table?(1pt)
City State Lincoln Nebraska Oklahoma City Oklahoma Aguascalientes Aguascalientes Guadalajara Jalisco
<pr></pr> <hr></hr> <pre></pre>
10. Are you having fun with html? =)
YES NO