Quiz #10

Linking

Question 1

<a href=
"p-2">p-2.html</a>


A

<a href=
"p-2.html">P-2</a>


B

<a href=
"p-2.html">P-2</a>


C

Which hyperlink would send a visitor to p-2.html?

Question 2

<a href=
"index.html"><img src="home.gif"></a>


A

<a href=
"index.html">Button</a>


B

<a href=
"index.html">Home</a>


C

Which block of code would be most likely to produce an image button as a hyperlink?

Question 3

homepage.html


A

index.html


B

default.html


C

The Home page of your website should always be named

Question 4

<br>


A

<b>


B

<break>


C

Which tag is used to break the lines of code and add space?

Question 5

<html>
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<head>
<title></title>
<meta name="description" content="">
<meta name="keywords" content="">
<link rel="stylesheet" href="stylesheet.css" type="text/css">
</head>


A

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
<title></title>
<meta name="description" content="">
<meta name="keywords" content="">
<link rel="stylesheet" href="stylesheet.css" type="text/css">
</head>


B

<html>
<head>
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<title></title>
<meta name="description" content="">
<meta name="keywords" content="">
<link rel="stylesheet" href="stylesheet.css" type="text/css">
</head>


C

Choose the properly arranged document head.