Which character is used to indicate an end tag? Correct Ans-/
How can you open a link in a new tab/browser window? Correct Ans-<a href="url"
target="_blank">
Which of these elements are all <table> elements? Correct Ans-<table><tr><td>
How can you make a numbered list? Correct Ans-<ol>
How can you make a bulleted list? Correct Ans-<ul>
What is the correct HTML for making a text input field? Correct Ans-<input type="text">
What is the correct HTML for making a drop-down list? Correct Ans-<select>
What is the correct HTML for making a text area? Correct Ans-<textarea>
What is the correct HTML for inserting an image? Correct Ans-<img src="image.gif"
alt="MyImage">