Base: HTML Basics Unit Web Design 1

Reviewed by Editorial Team
The ProProfs editorial team is comprised of experienced subject matter experts. They've collectively created over 10,000 quizzes and lessons, serving over 100 million users. Our team includes in-house content moderators and subject matter experts, as well as a global network of rigorously trained contributors. All adhere to our comprehensive editorial guidelines, ensuring the delivery of high-quality content.
Learn about Our Editorial Process
| By Jmannion
J
Jmannion
Community Contributor
Quizzes Created: 1 | Total Attempts: 717
| Attempts: 717 | Questions: 24
Please wait...
Question 1 / 24
0 %
0/100
Score 0/100
1. What is the file extension used for HTML file ?

Explanation

The correct answer is .HTML. The file extension .HTML is used for HTML files. HTML stands for Hypertext Markup Language, which is the standard markup language for creating web pages. By using the .HTML file extension, web browsers are able to recognize and interpret the contents of the file as HTML code, allowing the web page to be displayed properly with the intended formatting and structure.

Submit
Please wait...
About This Quiz
HTML Basics Quizzes & Trivia

This quiz titled 'BASE: HTML basics Unit Web Design 1' assesses foundational knowledge of HTML, including its syntax, tag sensitivity, offline editing, color definitions, and structure. It's designed for learners to understand key web design principles.

Personalize your quiz and earn a certificate with your name on it!
2. What does HTML stand for ?

Explanation

HTML stands for Hyper Text Markup Language. It is the standard markup language used for creating and structuring web pages. HTML is responsible for defining the structure and layout of a webpage, including headings, paragraphs, links, images, and other elements. It allows web browsers to interpret and display the content of a webpage correctly.

Submit
3. Software programs, like your Web browser, use a mathemathical approach to define color.

Explanation

Software programs, including web browsers, use a mathematical approach to define color. This is achieved through the use of color models such as RGB (Red, Green, Blue) or CMYK (Cyan, Magenta, Yellow, Black). These models assign numerical values to each color component, allowing software to accurately represent and manipulate colors on digital displays. By using mathematical calculations, software programs can create a wide range of colors and accurately render them on screens. Therefore, the statement "Software programs, like your Web browser, use a mathematical approach to define color" is true.

Submit
4. The page title is inside the____tag.

Explanation

The page title is typically placed inside the HEAD tag of an HTML document. The HEAD tag is used to define information about the document, such as the title, character encoding, and linked stylesheets. Placing the page title inside the HEAD tag allows search engines and browsers to properly identify and display the title of the webpage.

Submit
5. You do not have to connect to the internet to verify changes to a Web page on your computer.

Explanation

You do not need to connect to the internet to verify changes to a web page on your computer because the changes are made locally on your computer. When you make changes to a web page using a web development tool or software, you can preview and verify those changes directly on your computer without needing an internet connection. This allows developers to test and make adjustments to their web pages before publishing them online.

Submit
6. H1 is the smallest header tag.

Explanation

The statement "H1 is the smallest header tag" is false. In HTML, header tags range from H1 to H6, with H1 being the largest and H6 being the smallest. H1 is typically used for the main heading of a webpage, while H6 is used for subheadings or less important headings.

Submit
7. _____________ are additional features that can be added to tags to specify additional properties of that particular tag.

Explanation

Attributes are additional features that can be added to tags to specify additional properties of that particular tag. In HTML, tags can have attributes like id, class, style, etc., which provide extra information about the element. These attributes help define the behavior, appearance, or functionality of the tag. For example, the attribute "id" can be used to uniquely identify an element, while the "class" attribute can be used to group elements with similar styles or behaviors. Attributes enhance the flexibility and customization options of tags in web development.

Submit
8.
Which tag pairs marks the beginning and the end of an HTML document?

Explanation

The HTML document starts with the opening tag and ends with the closing tag . These tags enclose the entire HTML document and indicate the beginning and the end of the document.

Submit
9. HTML Tags are case sensitive.

Explanation

HTML tags are not case sensitive. This means that whether you use uppercase or lowercase letters when writing HTML tags, it will not affect how the tags are interpreted by the browser. For example,

and

both represent the paragraph tag. This flexibility allows developers to write HTML tags in a way that is more readable and easier to manage.

Submit
10.
Web pages should be saved with what file extension?

Explanation

Web pages should be saved with the file extension .htm or .html. This is because .htm or .html is the standard file extension for HTML documents, which are the building blocks of web pages. By saving web pages with this file extension, it allows web browsers to recognize and interpret the HTML code correctly, ensuring that the web page is displayed as intended.

Submit
11. There are_____color names recognized by all version of HTML.

Explanation

HTML recognizes 16 color names. These color names are predefined and can be used directly in HTML code without specifying their hexadecimal values. The 16 color names recognized by HTML are aqua, black, blue, fuchsia, gray, green, lime, maroon, navy, olive, purple, red, silver, teal, white, and yellow. These color names provide a convenient way to specify colors in HTML without the need to remember or look up their hexadecimal values.

Submit
12.
How are closing tags distinguished from their corresponding opening tags?

Explanation

Closing tags are distinguished from their corresponding opening tags by including a forward slash (/) before the tag name. This indicates that it is the closing tag for the specific element.

Submit
13. <Hn> tag is conatiner tag?

Explanation

The tag is a container tag in HTML. It is used to define headings in a web page, with "n" representing the level of the heading ranging from 1 to 6. The opening tag marks the beginning of the heading and the closing tag marks the end. As a container tag, it encapsulates the content within it and applies the appropriate styling and formatting to the heading text. Therefore, the statement "The tag is a container tag" is true.

Submit
14. What are the attributes of font tag?

Explanation

The attributes of the font tag are face, size, and color. These attributes allow the user to specify the font face, font size, and font color for the text enclosed within the font tag.

Submit
15.
Which of the following is NOT found in the body section of an HTML document?

Explanation

The "title" element is not found in the body section of an HTML document. It is used to define the title of the document, which is displayed in the browser's title bar or tab. The body section contains the content of the webpage, such as paragraphs (p), headings, images (img), and horizontal rules (hr).

Submit
16. Instructions that allow you to specify how you want your text to appear and to instruct the browser to include specific images in your document are called _________ tags.

Explanation

HTML tags are used to specify how text should appear and to instruct the browser to include specific images in a document. HTML (Hypertext Markup Language) is the standard markup language for creating web pages and it uses tags to structure the content and define its appearance. Therefore, the correct answer is "html".

Submit
17. The default horizontal row alignment for is _______________?

Explanation

The correct answer is "left" because the question is asking for the default horizontal row alignment. In most cases, the default alignment for rows is left-aligned, meaning that the content of the rows is aligned to the left side of the table or document.

Submit
18. Which is the best reason for using a closing (p) tag in your document when you open a paragraph tag?

Explanation

The closing (p) tag is used to clearly define the end of a paragraph in HTML. By using this tag, it helps the writer to easily differentiate between paragraphs and maintain proper formatting of the content. Without closing the (p) tag, the paragraphs would not be properly closed, resulting in incorrect structure and potential display issues. Therefore, using the closing (p) tag is essential to ensure that all tags are properly closed and to maintain the integrity of the document's structure.

Submit
19.
Which tag will insert a line across the page?

Explanation

The "hr" tag is used to insert a horizontal line across the page.

Submit
20.
What is the proper tag to set a horizontal line to span 50% of your screen?

Explanation

The proper tag to set a horizontal line to span 50% of your screen is "hr width=’50%’". This attribute specifies the width of the horizontal line as a percentage of the available space.

Submit
21.
What is a tag?

Explanation

A tag is a set of characters represented by a left and right angle bracket with the name of the tag between them. It is used in web development to provide instructions to the web browser on how to format text and which objects to insert. Tags are essential in HTML coding as they define the structure and appearance of web pages.

Submit
22. Which attribute is correct to apply a background color to a tag?

Explanation

The correct attribute to apply a background color to a tag is "bgcolor".

Submit
23.
How can you justify a paragraph in your web page?

Explanation

To justify a paragraph in a web page, the correct HTML attribute is "p align='justify'". This attribute is used to align the text within the paragraph to both the left and right margins, creating a clean and balanced appearance. The other options mentioned - p='justify', align='justify', and p align='justified' - are not valid HTML attributes for justifying a paragraph.

Submit
24. Which is a correct syntax?

Explanation

The correct syntax is "p align=center". This syntax is used to align the paragraph element (p) to the center of the page. The "align" attribute is used to specify the alignment, and in this case, it is set to "center".

Submit
View My Results

Quiz Review Timeline (Updated): Mar 21, 2023 +

Our quizzes are rigorously reviewed, monitored and continuously updated by our expert board to maintain accuracy, relevance, and timeliness.

  • Current Version
  • Mar 21, 2023
    Quiz Edited by
    ProProfs Editorial Team
  • Nov 04, 2014
    Quiz Created by
    Jmannion
Cancel
  • All
    All (24)
  • Unanswered
    Unanswered ()
  • Answered
    Answered ()
What is the file extension used for HTML file ?
What does HTML stand for ?
Software programs, like your Web browser, use a mathemathical approach...
The page title is inside the____tag.
You do not have to connect to the internet to verify changes to a Web...
H1 is the smallest header tag.
_____________ are additional features that can be added to tags to...
Which tag pairs marks the beginning and the end of an HTML document?
HTML Tags are case sensitive.
Web pages should be saved with what file extension?
There are_____color names recognized by all version of HTML.
How are closing tags distinguished from their corresponding opening...
<Hn> tag is conatiner tag?
What are the attributes of font tag?
Which of the following is NOT found in the body section of an HTML...
Instructions that allow you to specify how you want your text to...
The default horizontal row alignment for is _______________?
Which is the best reason for using a closing (p) tag in your...
Which tag will insert a line across the page?
What is the proper tag to set a horizontal line to span 50% of your...
What is a tag?
Which attribute is correct to apply a background color to a tag?
How can you justify a paragraph in your web page?
Which is a correct syntax?
Alert!

Advertisement