W3Schools Question 11-20
How can you make a numbered list?
<ol>
What is the correct HTML for inserting a background image?
<body style="background-image:url(background.gif)">
What is the correct HTML for inserting an image?
<img src="image.gif" alt="My Image">
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">
What is the correct HTML for making a drop-down list?
<select>
Which of these elements are all <table> elements?
<table><tr><td>
What is the correct HTML for making a text area?
<text area>
How can you make a bulleted list?
<ul>
Inline elements are normally displayed without starting a new line.
True