What form input type is used to select only one option.
<input type="radio">
Which element is used for table headings?
<th>
What is the smallest heading?
<h6>
What is a marquee?
A marquee is a tag container which causes text or images to move in different directions
What does HTML stand for?
Hypertext Markup Language
What form input type is used to select multiple options out of many.
<input type="checkbox">
What is the difference between <tr> and <th>
<tr> defines a row
<th> defines a heading for a row
What is the difference between an ordered and unordered list?
Ordered list: <ol> arranges points in numerical form
Unordered list: <ul> arranges points in bulleted form
What is the very first line of an HTML webpage called?
Declaration <DOCTYPE! html>
What are the two ways to add a text box in HTML?
<input type="text">
<textarea>
What are HTML links defined with?
<a>
What are the two ways to add an underline?
<u> or <ins>
What attribute do you use in case the image is not able to display on the webpage?
alt
What is the head tag used for?
Meta information of the page/non-visible aspects of the page
What is the placeholder attribute used for?
It is a short sample text in an input field
What does "href" mean?
The "href" attribute specifies the URL of the page the link goes to
What tag is used to display content exactly how it was written in the code?
<pre>
What is the root element?
<html>
It contains all other information about the webpage