She Codes - Logo
She Codes - HTML Quiz 1

What does HTML stand for?
Hyperlinks and Text Markup Language
Home Tool Markup Language
Hyper Text Markup Language
_________________________ uses elements, to describe the structure of the web pages.
Opening tag
HTML
Tags
Elements
Latest version of HTML is
HTML
HTML 3.2
XHTML
HTML 5
DHTML
HTML 4.01
You can develop websites for any of the following: (you can select more than one option)
E-commerce
Car repairing
Book airline tickets
Food recipes
Student registration form
None of the above
All of the above
The use of ___________________ and ___________________ in any document often reflects a hierarchy of information.
Indentation, formatting
Headings, subheadings
None of the above
All of the above
In ____________ and ___________, we can select among a set of different sized headings.
HTML, Notepad
HTML, MS Word
Notepad, MS Word
All of the above
___________________ describes the structure of the web pages
Opening tag
HTML
Tags
Elements
This is the correct structure of an html page:

<html>

<body>

<p>Sample text goes here.</p>

</body>

</html>

<html>

<head>

<body>

<p>Sample text goes here.</p>

</body>

</head>

</html>

<html>

<head>

<title>My web page</title>

</head>

<body>

<p>Sample text goes here.</p>

</body>

</html>

In an HTML page, _________________ and ___________________ reflect hierarchy of information.
Indentation, line break
Tabs, spaces
Headings, subheadings
Elements, attributes
HTML tags act like __________________
Containers
Documents
Text
All of the above
Elements are usually made up of these tags: (you can select more than one option)
Opening tag
Self closing tag
Closing tag
Paragraph tag
An opening tag contains following (you can select more than one option)
Right-angle bracket ( > )
Back slash
Left-angle bracket ( < )
Character
Sentence
Forward slash
A closing tag contains following: (you can select more than one option)
Right-angle bracket ( > )
Back slash
Left-angle bracket ( < )
Character
Sentence
Forward slash
Words between ____________ are a main heading.
<head></head>

<h2></h2>

<h1></h1>

<h6></h6>

<h></h>

<header></header>

The opening ________ tag indicates that anything between it and a closing _________ tag is HTML code.

<body>, </body>

<head>, </head>

<p>, </p>

<html>, </html>

<title>, </title>

<h2>, </h2>

The _________ tag indicates that anything between it and the closing ________ tag should be shown inside the main browser window.

<body>, </body>

<head>, </head>

<p>, </p>

<html>, </html>

<title>, </title>

<h2>, </h2>

A paragraph of text appears between these ________ and ________ tags.

<body>, </body>

<head>, </head>

<p>, </p>

<html>, </html>

<title>, </title>

<h2>, </h2>

Words between ____________ form a sub-heading.

<body>, </body>

<head>, </head>

<p>, </p>

<html>, </html>

<title>, </title>

<h2>, </h2>

Tag to add label to browser window is ______________ and ______________.

<body>, </body>

<head>, </head>

<p>, </p>

<html>, </html>

<title>, </title>

<h2>, </h2>

The closing ___________ tag indicates that it is the end of the HTML code.

</head>

</html>

</body>

</p>

</h1>

Choose the correct HTML element for the largest heading:

<head>

<h6>

<h1>

<h7>

<small>

<heading>

<large>
Choose the correct HTML element for the smallest heading:

<head>

<h6>

<h1>

<h7>

<small>

<heading>

<large>
What is the correct HTML element for inserting a line break? (you can select more than one option)

<br>

<break>

<lb>

<br/>

Which character is used to indicate an end tag?
^
<
*
/
Which HTML element defines the title of a document?

<label>

<title>
<meta>
<head>
What is the difference between HTML and CSS?
HTML deals with the function of the site and CSS the form
CSS is a markup language unlike HTML
CSS deals with the function of the site and HTML the form
There is no difference
What is an HTML element?
Content inside body tag
Start tag and an end tag, with content in between
Everything that is visible when viewing the site
Everything inside the head tag

Below is a paragraph element. What is a benefit of inputting text into one?

<p> Hello world! </p>

It allows the text to be styled
It will not be displayed
It prevents markup adjustments
You cannot insert text outside of tags
Which tag contains ALL of the website's visible content?
Head
Body
Title
Start
Which heading tag displays the largest text?
H5
H10
H2
H6

What is the function of the tag below?

<title> This tag </title>

Store meta information about the title
Show the server how to index the website
Stores the title of the website for the browser and search engine results
Show the server how to title the website
What is the purpose of indentation in HTML?
It makes the code more readable
HTML is whitespace dependant
It is required in HTML’s syntax
None

What will the line "Blog" be displayed as on the browser?

<html>

Blog

</html>

4. Blog
Blog
.Blog
Blog will not be displayed
Which tag has the highest default font-size?

<p>

<a>

<h1>

<strong>

In <head>, the ___________ in the brackets indicate the tag's purpose.
Words
Sentences
Characters
Brackets
The terms, _____________ and _____________ can be used interchangeably. (you can select more than one option)
Attribute, property
Tag, element
None of the above
All of the above
____________________ provide additional information about the contents of an element.
Elements
Attributes
Characters
Tags
Documents
Atrributes appear in the ________________ of the element. (you can select more than one option)
Self closing tag
Closing tag
Paragraph tag
Opening tag
End tag
Start tag
The attribute name should be written in ________________.
Camel case
Upper case
Lower case
Mixed case
All of the above

Attributes are made up of two parts: ______________ and ____________ separated by equals sign (=)

Opening tag, closing tag
Angle bracket, forward slash
Paragraph, heading
Name, value
Which HTML attribute is used to show tool tip / hint?
Src
Name
Id
Width
Title
Head
Height
Lang
Which HTML attribute is used to indicate the language used in the element?
Src
Name
Id
Width
Title
Head
Height
Lang
The attribute _____________ indicates what kind of extra information you are supplying about the element's content.
Name
Value
None of the above
All of the above
______________ of an attribute should be placed in double quotes.
Name
Value
None of the above
All of the above
Different attributes can have different ______________.
Names
Values
None of the above
All of the above
The attribute _____________ indicates the information or setting for the attribute.
Name
Value
None of the above
All of the above
HTML5 allows you to : (you can select more than one option)
Write web pages
Use uppercase attribute names
Develop mobile application
Omit the quote marks in attribute values
Write web page on a single line
None of the above
All of the above
______________ contains information about the page.

<body>, </body>

<head>, </head>

<p>, </p>

<html>, </html>

<title>, </title>

<h2>, </h2>

You will usually find a _____________ element inside the ____________ element.

<body> , <title>

<h1> , <p>

<title> , <head>

Any file with following extension(s), is a web page. (you can select more than one option)
.doc
.html
.web
.com
.org
{"name":"She Codes - HTML Quiz 1", "url":"https://www.quiz-maker.com/QPREVIEW","txt":"What does HTML stand for?, _________________________ uses elements, to describe the structure of the web pages., Latest version of HTML is","img":"https://www.quiz-maker.com/3012/images/ogquiz.png"}
Powered by: Quiz Maker