Quiz HTML IDT
What is the preferred way for adding a background color in HTML?
<body style="background-color:yellow;">
How can you make a bulleted list?
<ul>
What is the correct HTML for defining document type?
<!DOCTYPE>
What is the correct HTML for creating a hyperlink?
<a href="http://www.w3schools.com">W3Schools</a>
Choose the correct HTML tag to make a text bold
<b>
HTML code that defines a document body
<body>
What is the correct HTML tag for inserting a line break?`
<br>
Defines a header for a document or section
<header>
Choose the correct HTML tag for the largest heading
<heading>
Choose the correct HTML tag to make a text italic
<i>
What is the correct HTML for inserting an image?
<img src="image.gif" alt="MyImage">
Defines a list item
<li>
How can you make a numbered list?
<ol>
Defines a paragraph
<p>
Defines a title for the document
<title>
What does HTML stand for?
Hyper Text Markup Language
Who is making the Web standards?
The World Wide Web Consortium
This is what we see on the webpage after HTML is published
document content
Link to another location or file
hyperlink
Are the HTML codes that control the appearance of the document content.
tags