NEW
Font size
WorksheetsWeb Development
Total questions: 10
Worksheet time: 5mins
HTML is what type of language ?
Scripting Language
Network Protocol
Markup Language
Programming Language
A piece of a website, marked by a start tag and often closed with an end tag
website content
HTML tag
HTML element
website structure
Which heading HTML elements will create the smallest font size on a website?
<h1>name</h1>
<h2>name</h2>
<h7>name</h7>
<h5>name</h5>
Look at the HTML code below and predict how the headings will be displayed.
<h3> Eggs </h3>
<h1> Bacon </h1>
<h6> Waffles </h6>
Look at the list above and predict the HTML code you would use to display it correctly. Choose from the following answers.
Select the image tag that is correctly written in HTML code
The elements <DIV> and <SPAN> have the following characteristics
Element <DIV> inherits properties defined for <SPAN> in a stylesheet
<DIV> is used inside element <P>.
<DIV> and <SPAN> are used as alternatives for the element <P>
Elements <SPAN> and <DIV> define content to be inline or block-level
How can you open a link in a new browser window?
<a href="url" target="_blank">
<a href="url" target="new">
<a href="url" new>
<a href="url" target="">
How can you create an e-mail link?
<mail href="a@b">
<mail>a@b</mail>
<a href="a@b">
<a href="mailto:a@b.com">
Which of the following html elements contains a bug?
