Part I: MCQ: [45 points, 1 point each]
1. Tags and text that do not show directly on the page are placed where?
A- Tables
B- Head
C- Body
D- Forms
2. The
tag belongs where in your HTML?
A- Form
B- Body
C- Head
D- Tables
3. What tag tells the browser where the page starts and stops?
A-
B-
C-
D- None of the Above
4. Which of the following will NOT be found in the
section?
A- Metatags
B- Title
C- Table
D-
5. Which is the correct tag to make a link that will send an email?
A-
B-
C-
D-
6. Table cells are represented by:
A-
B-
C-
D- |
7. To link your Web page to a style sheet, you must use the _____ tag.
A-
B-
C-
D-
8. To center, right or left justify text or an image, what code would I use?
A- justify
B- align
C- push
D- send
9. What does CSS stand for?
A- Creative Style Sheets
B- Cascading Style Sheets
C- Computer Style Sheets
D- Colorful Style Sheets
10. Where in an HTML document is the correct place to refer to an external style sheet?
A- In the
section
B- In the
section
C- At the top of the document
D- At the end of the document
11. Which HTML tag is used to define an internal style sheet?
A-
B-
C-
D-
12. Which HTML attribute is used to define inline styles?
A- class
B- font
C- styles
D- none of the above
13. Which is the correct CSS syntax?
A- body {color: black;}
B- body:color=black;
C- {body;color:black;}
D- {body:color=black;}
14. How do you insert a comment in a CSS file?
A- // this is a comment //
B- /* this is a comment */
C- ' this is a comment
D- // this is a comment
15. How do you add a background color for all
elements?
A- all.h1 {background-color:#FFFFFF;}
B- h1.all {background-color:#FFFFFF;}
C- h1 {background-color:#FFFFFF;}
D- {h1 background-color:#FFFFFF;}
16. Which CSS property is used to change the text color of an element?
A- fgcolor
B- text-color
C- color
D- colure
17. Which CSS property controls the text size?
A- text-style
B- text-size
C- font-size
D- font-style
18. How do you display hyperlinks without an underline?
A- a {underline:none;}
B- a {text-decoration:no-underline;}
C- a {text-decoration:none;}
D- a {decoration:no-underline;}
19. What is the correct HTML for creating a hyperlink?
A- KCKCC
B- KCKCC
C- KCKCC
D- http://www. kckcc.edu
20. How can you make a numbered list?
A-
B-
C-
D-
21. What is the correct HTML for making a checkbox?
A-
B-
C-
D-
22. What is the correct HTML for inserting an image?
A-
B-
C-
D- image.gif
23. How do you make the text bold?
A- style:bold;
B- font:bold;
C- font-weight:bold;
D- weight:bold;
24. How do you display a border like this:
The top border = 10 pixels
The bottom border = 5 pixels
The left border = 20 pixels
The right border = 1pixels
A- border-width:10px 20px 5px 1px;
B- border-width:10px 1px 5px 20px;
C- border-width:5px 20px 10px 1px;
D- border-width:10px 5px 20px 1px;
25. Which doctype is correct for HTML5?
A-
B-
C-
D-
26. Which HTML5 element is used to specify a footer for a document or section?
A-
B-
C-
D-