web design study (cte)
Which doctype is correct for HTML5?
<!DOCTYPE html>
How can you open a link in a new tab/browser window?
<a href="url" target="_blank">
What is the correct HTML for adding a background color?
<body style="background-color:yellow;">
What is the correct HTML for inserting a background image?
<body style="background-image:url(background.gif)">
What is the correct HTML element for inserting a line break?
<br>
Choose the correct HTML element to define emphasized text?
<em>
What is the correct form for the largest heading?
<h1>
What is the correct HTML for inserting an image?
<img src="image.gif" alt="MyImage">
What is the correct HTML for making a checkbox?
<input type="checkbox">
What is the correct HTML for making a text input field?
<input type="text">
How can you make a numbered list?
<ol>
What is the correct HTML for making a drop-down list?
<select>
What is the correct HTML element to define important text?
<strong>
What is the correct HTML for making a text area?
<textarea>
Which HTML element defines the title of a document?
<title>
How can you make a bulleted list?
<ul>
Block elements are normally displayed without starting a new line.
False
What does HTML stand for?
Hypertext Markup Language
An <iframe> is used to display a web page within a web page.
True
HTML comments start with <!-- and end with -->
True
Who is making the Web standards?
World Wide Web Consortium (W3C)
Which HTML attribute specifies an alternate text for an image, if the image cannot be displayed?
alt
Inline elements are normally displayed without starting a new line.
true