HTML
Which character is used to indicate an end tag?
/
HTML comments starts and ends with
<! >
What is the correct HTML for creating a hyperlink?
<a href="http://www.w3schools.com">W3Schools</a>
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)">
Choose the correct HTML element for the largest heading:
<h1>
What is the correct HTML for inserting an image?
<img src="image.gif" alt="MyImage">
How can you make a numbered list?
<ol>
What is the correct HTML for making a drop-down list?
<select>
Choose the correct HTML element to define important text
<strong>
Which of these elements are all <table> elements?
<table><tr><td>
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>
Which HTML attribute specifies an alternate text for an image, if the image cannot be displayed?
alt
What does HTML stand for?
Hyper Text Markup Language
What is the correct HTML for making a text input field?
<input type="text">
Who is making the Web standards?
The World Wide Web Consortium
What is the correct HTML element for inserting a line break?
<br>