1.What are HTML tags?
Tags that deliver instructions to a web browser to display page information.
2.Where is the text of the title tag displayed?
In the title bar of the browser window.
3.What steps are involved in creating a simple HTML document?
- Launch your text editor program.
- Go to the text editor window.
- Enter the HTML tags
4. How do you create a comment tag?
Comment tags are enclosed by !----comment----
5. How can you display your HTML document in a web browser?
- Select Open File... from the File menu.
- Use the dialog box to find and open the file you created.
- You should now see in the title bar of the browser window the title of the HTML you created and in the web page below, the body of the text you wrote.
Review – Lesson 2
How did you re-open your workspace?
- Select New Window from the File menu.
- Use the Open File command from the File menu to find the necessary file
What steps did you use to make changes in your HTML document?
- Go to the text editor window.
- Below the typed text typed press return a few times and add the necessary changes
- This text should be above the and tags shown at the bottom of your HTML file.
- To update these changes in Notepad, select save from the file menu.
How did you display and view these changes in your web browser?
- Go back to the browser window and refresh the screen to update the HTML with the changes.
Review Topics – Lesson 3
What are the different levels of headings in HTML?
The different levels of headings range from 1 through to 6, each of these appear as different sizes in the HTML document.
What are the tags associated with these different levels?
The tags associated with these different levels are hn
What steps did you use in placing headings in your HTML document?
- Open the browser window
- Go to the text editor window
- Open the HTML text file
- Enter
heading - Save changes
- Return to your web browser and refresh.
What happens if you forget a slash at the end of a header tag?
If the correct ending is not entered, all of the text is seen as part of the heading.
Review Topics – Lesson 4
What is the HTML tag for a paragraph break?
The tag for a paragraph break is p, (you would also use the comma's that surround the HTML tags, I havent in this instance to stop the HTML document from actually inserting a paragraph in the instance.)
- Open your web browser.
- Go to the text editor window.
- Open your HTML document in the text editor.
- Enter the HTML tag p
where you need to insert a paragraph. - Save the changes in the text editor.
How did you display and view the changes in your web browser?
- Return to the web browser and refresh the screen and the changes should become visible
* Extra Credit: What is a horizontal rule
A horizontal rule is often used to divide sections of a HTML document. To insert a horizontal line in a HTML document you use the hr tag.
What are HTML style tags?
HTML style tags are tags that are used in your document to add such things as bold or italics to the HTML.
For bold - b
For italics - i
For typewriter - tt
For bold and italics - i b
(All of these tags would be enclosed with the HTML commas.)
What steps did you use in entering styled text into your HTML document?
- Open your browser
- Open your HTML document in the text editor.
- Insert the appropriate tag to make the word appear in bold, italics or typewriter style
- Save in the text editor and refresh.
*Extra Credit: How can these styles be useful in creating a web page or lesson?
These styles can be useful because they can be used to highlight important words or headings etc.
Review Topics – Lesson 6
How are lists valuable in a web page?
Lists are useful for creating index's or table of contents to documents or chapters.
What is the HTML tag for a unordered list?
The HTML tag for an unordered list is ul.
What is the tag for a ordered list?
The HTML tag for and ordered list is ol.
What steps did you use in adding a list to your HTML document?
- Open your browser
- Open your HTML document in the text editor.
- Add the sentences that you need and enter the HTML tag to insert the type of list that you require.
- Save in your text editor and refresh on your web browser.
No comments:
Post a Comment