Which HTML tag is used to define an unordered list?
A
<ol> B
<ul> C
<li> D
<list>
Analysis & Theory
`<ul>` defines an unordered (bulleted) list in HTML.
Which HTML tag is used to define a table row?
A
<td> B
<th> C
<tr> D
<table>
Analysis & Theory
`<tr>` defines a row in an HTML table.
What is the correct HTML tag for inserting a line horizontally?
A
<line> B
<hr> C
<break> D
<br>
Analysis & Theory
`<hr>` inserts a horizontal line (thematic break).
Which tag is used to create a dropdown list in HTML?
A
<input> B
<select> C
<dropdown> D
<list>
Analysis & Theory
`<select>` creates a dropdown menu in HTML.
Which attribute is used to specify the URL of a link?
A
href B
src C
url D
link
Analysis & Theory
`href` is the attribute used with `<a>` to specify the link URL.
How can you open a link in a new browser tab?
A
Add `newtab` attribute B
Use `target='_blank'` C
Use `window=new` D
Use `tab='new'`
Analysis & Theory
`target='_blank'` opens the link in a new tab or window.
Which HTML tag is used to add a checkbox?
A
<check> B
<input type='checkbox'> C
<box> D
<checkbox>
Analysis & Theory
`<input type='checkbox'>` creates a checkbox.
What is the correct HTML tag to make text bold?
A
<bold> B
<b> C
<strong> D
Both <b> and <strong>
Analysis & Theory
`<b>` makes text bold visually, while `<strong>` also gives semantic importance. Both work.
Which HTML tag is used to create a numbered list?
A
<ul> B
<ol> C
<li> D
<dl>
Analysis & Theory
`<ol>` creates an ordered (numbered) list in HTML.
Which HTML tag defines a cell in a table?
A
<tr> B
<td> C
<th> D
<table>
Analysis & Theory
`<td>` defines a standard cell in an HTML table row.