Question 1
Question
In order to find the location of the web server, your browser will first connect to this type of server.
Answer
-
Domain Name Server
-
Domain Name System
-
Direct Name Server
-
Domain Number System
Question 2
Question 3
Question
Traditionally IP addresses were numbers up to 16 digits seperated by periods.
Question 4
Question
HTML [blank_start]elements[blank_end] are usually made up of two tags: an [blank_start]opening[blank_end] and [blank_start]closing[blank_end] tag.
Question 5
Question
The opening [blank_start]<html>[blank_end] tag indicates that anything between it and a closing [blank_start]</html>[blank_end] tag is HTML code.
Answer
-
<html>
-
<body>
-
<h1>
-
<p>
-
</html>
-
</body>
-
</h1>
-
</p>
Question 6
Question
The [blank_start]<body>[blank_end] tag indicates that anything between it and the closing [blank_start]</body>[blank_end] tag should be shown inside the main browser window.
Answer
-
<body>
-
<html>
-
<h1>
-
<p>
-
</body>
-
</html>
-
<h1>
-
<p>
Question 7
Question
Words between [blank_start]<h1>[blank_end] and [blank_start]</h1>[blank_end] are a main heading.
Answer
-
<h1>
-
<p>
-
<html>
-
<h2>
-
</h1>
-
</h2>
-
</p>
-
</html>
Question 8
Question
Paragraphs of text are located between the [blank_start]<p>[blank_end] and [blank_start]</p>[blank_end] tags.
Question 9
Question
Words between the [blank_start]<h2>[blank_end] and [blank_start]</h2>[blank_end] tags form a sub-heading.
Answer
-
<h2>
-
<h1>
-
<p>
-
<body>
-
</h2>
-
</h1>
-
</p>
-
</body>
Question 10
Question
The attribute name indicates what kind of extra information you're supplying about the elements content. They should be written in lowercase.
Question 11
Question
The value is the information or setting for the attribute. It should be placed in single quotes.
Question 12
Question
HTML is made up of these characters that live inside of angled brackets.
Answer
-
elements
-
tags
-
languages
-
css
Question 13
Question
HTML5 allows you to use uppercase attribute names and omit the quote marks, but this is not recommended.
Question 14
Question
Everything inside of the [blank_start]<body>[blank_end] element is shown inside the main browser.
Question 15
Question
Before the <body> element you will often see a [blank_start]<head>[blank_end] element. You can usually find a [blank_start]<title>[blank_end] element inside of this element.
Question 16
Question
The contents of the <title> element are shown inside of the main browser window.
Question 17
Question
What does HTML stand for?