- Which HTML tag is used to create an unordered list?
- <ul>
- <ol>
- <dl>
- <li>
- What is the correct way to define a list item in an unordered list?
- <ul><item>Item 1</item></ul>
- <ul><li>Item 1</li></ul>
- <ul>Item 1</ul>
- <ol><li>Item 1</li></ol>
- Which attribute can be used to define the type of numbering for an ordered list?
- type
- number
- style
- list-style-type
- How do you create a table row in HTML?
- <tr>
- <td>
- <th>
- <table>
- What tag is used to define a table header cell in HTML?
- <td>
- <th>
- <tr>
- <thead>
- Which attribute can be used to group rows in a table header or footer?
- group
- header
- footer
- thead and tfoot
- What is the purpose of the <iframe> tag in HTML?
- To embed an image
- To embed another webpage within a webpage
- To define a table cell
- To create a form
- How do you specify the source of the content to be embedded in an <iframe>?
- src attribute
- href attribute
- content attribute
- embed attribute
- Which semantic tag is used to represent a section of a document that is independently distributable or
reusable, such as a chapter, the header, footer, or any other section of the document?
- <article>
- <section>
- <aside>
- <header>
- What semantic tag is used to represent a navigation link section within a webpage?
- <nav>
- <menu>
- <links>
- <footer>
- How do you define a footer for a webpage using semantic HTML?
- <footer>
- <end>
- <bottom>
- <page-footer>
- Which semantic tag is used to represent a sidebar or additional information that is tangentially related to
the main content?
- <aside>
- <section>
- <article>
- <supplement>
- What is the purpose of the <main> tag in HTML5?
- To define the main content of a webpage
- To define a table header
- To embed an image
- To create a form
- How do you define a table caption in HTML?
- <caption>
- <title>
- <header>
- <label>
- Which attribute can be used to define the border of a table in HTML?
- border
- frame
- rules
- style="border: 1px solid black;"
- What is the difference between <th> and <td> in HTML tables?
- <th> is for table headers, and <td> is for table data
- <th> is for table data, and <td> is for table headers
- Both are used for table data, but <th> is styled differently
- <th> is for table rows, and <td> is for table columns
-
Usually, one menu on a webpage is expressed by
- <ul>
- <ol>
- <dl>
- <menu>
- What is the purpose of the colspan attribute in HTML tables?
- To merge multiple rows into one
- To merge multiple columns into one
- To define the width of a column
- To define the height of a row
- How do you define a table header group in HTML?
- <thead>
- <header>
- <thgroup>
- <hgroup>
- Which semantic tag is used to represent a short quotation or a phrase from another source?
- <q>
- <blockquote>
- <cite>
- <abbr>
-
Which tag is belong to the block level?
- <div>
- <span>
- <strong>
- <a>
-
Which tag is belong to the inline level?
- <div>
- <section>
- <p>
- <a>
-
If one tag occupy the whole line, what is the category of that tag?
- Inline Element
- Block Element
- Group Element
- Complete Element
- The <ol> tag is used to create an unordered list.
- The <ul> tag is used to create an ordered list.
- The <table> tag is used to create a list in an HTML document.
- The <td> tag defines a table row in an HTML table.
- The <iframe> tag is used to embed another webpage within a webpage.
- Semantic HTML tags like <header>, <footer>, and <article> help improve the accessibility
and structure of a webpage.
- The <span> tag is a block-level container used for styling and layout purposes.
- The <div> tag is an inline container used for styling and layout purposes.
- The <section> tag defines a section in a document, such as chapters, headers, footers, or other
sections of a page.
- The <nav> tag defines a section of a page that contains navigation links.
- Block level elements are those that start on a new line and take up the full width available.
- Inline element can be placed within a block level element.
- Specify size of an inline element does not work.
- List cannot be nested within another list.
- Block Element
- Inline Element
- Embedded Webpage
- Try to compare the difference between the block element and the inline element.
- Try to compare <div> tag and <span> tag.
- How many list types in HTML5? What are they?
- Specify the basic tags in a table in HTML5.(at least 3)
- Specify the major semantic tags to create basic structure of document in HTML5.(at least 5)