Quiz 1 - HTML Basic Level
|
|
In this lesson, we will try to solve the quiz 1 HTML basic level of questions. You can then judge whether you have grasped the lessons in the Basic Level. If there are any doubts, please brush the lessons again.
Quiz One
1. What does HTML stand for?
A. Hard Text Manipulation Language
B. Hyper Text Markup Language
C. Hyper Tension Markup Language
D. Happy Today Markup Language
Display/Hide Answer
Hyper Text Markup Language
2. True Or False: Free hosting is the best, no matter what type of website you have?False – Free hosting should never be used for business. It is ok to use for personal and test websites however.
3. What does WYSIWYG stand for?A. Whenever You See It We Yell Go
B. What You Saw Is What You Got
C. When You Sit It Was Yesterday Girl
D. What You See Is What You Get
D – What You See Is What You Get. This is an editor that allows you to create a website based on what you see. It is offered by many website hosts as part of the package.
4. List the eight critical elements of any website.
<HTML></HTML>
<HEAD></HEAD>
<TITLE></TITLE>
<BODY></BODY>
The <HEAD> tag should not include general text or markup tags. This is only for title and Meta elements.
6. How do you change the title bar of a web page?Use the <TITLE> and </TITLE> Tags. Example, <TITLE>WEBSITE TITLE HERE</TITLE>
7. Why is the <BODY> tag important?Between the <BODY> and </BODY> tags is where all the elements seen by your visitors on the website goes.
8. What does the “/” do in HTML?“/” closes out tags so that the browser knows when to stop applying a style or attribute.
9. Create a Notepad file and create a beginning website correctly using the eight critical elements.Coding Should Look Like This:
<HTML>
<HEAD>
<TITLE>TITLE HERE</TITLE>
</HEAD>
<BODY>
</BODY>
</HTML>
A. Notepad
B. FrontPage
C. Dreamweaver
D. All Of The Above
D – All of the above. Any of these editors can be used to create website and coding.
Where you able to solve Quiz 1 HTML Basic Level? If you answered all of them correctly without checking on the answer, then Kudos To You! If you had to check back on the answers, then I would suggest that you brush up the lessons again to get complete confidence in the Basic Level lessons.
| HTML PROGRAMMING TUTORIAL LESSONS | |||
| |||
|
|
| Goto HTML Programming Tutorial Home Page | Goto Computer Training Home Page |


