Questions

Your name

Answer as many of the following 20 questions that you can, selecting only one option for each question.

1. What does HTML stand for?
Hypertext MarkUp Language
Home Tool MarkUp Language
Hyperlinks and Text MarkUp Language
Hyper Technology MarkUp Language

2. What is the largest header tag?
< h5 >
< h8 >
< h6 >
< h1 >

3. What is the hexadecimal code for white?
#000000
#00FF00
#FFFFFF
#6E6E6E

4. What is the special character for >?
&gt;
&nbsp;
&copy;
&quot;

5. What are the 4 required HTML tags?
HTML, Head, Title, Body
P, B, H1, H2
HTML, Body, P, H1
Html,Meta, Head, Body

6. What attribute is used to centre a paragraph?
span
font
align
justify

7. What would you use to link to a specific part of the page within the document?
image
anchor
table
css

8. To get an image to sit on the right side of the window with text filling the area to the left of the image, what would your tag need to look like?
<img src align="mountains.jpg" "right"/>
<img src="mountains.jpg" align="right"/>
<img="mountains.jpg" src align="right"/>
<img " mountains.jpg" align src="right"/>

9. What is the tag for a row in a table?
<td>
<tl>
<tr>
<ts>

10. What type of list allows you to number the bullet points?
Bullet Point List
Unordered List
Definition List
Ordered List

11. How would you write the special character &?
&amp
&lt;
&gt;
&acute;

12. What is the correct format for creating a hyperlink?
<a> www.google.com < /a >
www.google.com;
<a href="www.google.com"> link to google </a>
<a url="www.google.com" > link to google </a>

13. What is the attribute that acknowledges the white space in code and shows it in a browser?
< white >
< spacing >
< padding >
< pre >

14. What is the colour code in hexadecimal for black?
(0,0,0)
#000000
#FFFFFF
black

15. Close this list according to HTML

	< ol >
		<li> english </li>
		<li> french </li>
		

<ol >
< /ol >
< /ul >
< close >

16. In a table what is the tag for a cell?
< tr >
< th >
< td >
< table >

17. If you were going to use a photo image in html what file extention would you use?
< .jpg >
< .gif >
< .png >
< .txt >

18. When tiling an image as a background what should you consider about the image you choose?
the sharpness of the image
the shape of the image
has even and bland colours
that there is no text in the image

19. What is the order of the main tags for a HTML document?
HTML, head, meta, body, title
HTML, head, title, meta, body
HTML title, head, body
meta, HTML, body

20. In a table what does this do: colspan="2"
makes the table twice as big
makes the border of the table 2 pixels
adds 2 lines to the bottom of the table
makes the cell merge to the size of 2 cells


Go to top