HTML paragraphs, lists, tables and comments, Lesson 2 Flashcards
(9 cards)
What is the most basic content in your web page?
Text
Text is fundamental for web pages, serving as primary content.
What are the two types of lists you can create in HTML?
- Ordered (numbered) lists
- Unordered (bulleted) lists
These lists help organize information in a structured manner.
What HTML element is used for creating paragraphs?
<p>
## Footnote
The <p> tag is used to define paragraphs in HTML.
</p></p>
How can you create simple tables in HTML?
Using <table>, <tr>, <td> tags
<table> defines the table, <tr> defines a row, and <td> defines a cell.
</td></tr></table>
What is the purpose of HTML comments?
To remember what you’ve done and why without altering the display
Comments are written within <!-- comment --> and are not rendered in the browser.
Fill in the blank: The HTML tag for an ordered list is _______.
<ol>
## Footnote
<ol> is used specifically for ordered lists.
</ol></ol>
What should you pay extra attention to in your readings?
The red boxes with key concepts
These red boxes highlight important information that should be understood.
What is a recommended activity to help create tables in HTML?
Watch a tutorial video
Videos often provide visual guidance that can enhance understanding.
True or False: Tables are still widely used for page design in modern web development.
False
Using tables for layout is considered bad practice in web design.