HTML paragraphs, lists, tables and comments, Lesson 2 Flashcards

(9 cards)

1
Q

What is the most basic content in your web page?

A

Text

Text is fundamental for web pages, serving as primary content.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

What are the two types of lists you can create in HTML?

A
  • Ordered (numbered) lists
  • Unordered (bulleted) lists

These lists help organize information in a structured manner.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
3
Q

What HTML element is used for creating paragraphs?

A

<p>

## Footnote

The <p> tag is used to define paragraphs in HTML.
</p></p>

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
4
Q

How can you create simple tables in HTML?

A

Using <table>, <tr>, <td> tags

<table> defines the table, <tr> defines a row, and <td> defines a cell.
</td></tr></table>

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
5
Q

What is the purpose of HTML comments?

A

To remember what you’ve done and why without altering the display

Comments are written within <!-- comment --> and are not rendered in the browser.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
6
Q

Fill in the blank: The HTML tag for an ordered list is _______.

A

<ol>

## Footnote

<ol> is used specifically for ordered lists.
</ol></ol>

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
7
Q

What should you pay extra attention to in your readings?

A

The red boxes with key concepts

These red boxes highlight important information that should be understood.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
8
Q

What is a recommended activity to help create tables in HTML?

A

Watch a tutorial video

Videos often provide visual guidance that can enhance understanding.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
9
Q

True or False: Tables are still widely used for page design in modern web development.

A

False

Using tables for layout is considered bad practice in web design.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly