html

0.0(0)
studied byStudied by 0 people
learnLearn
examPractice Test
spaced repetitionSpaced Repetition
heart puzzleMatch
flashcardsFlashcards
Card Sorting

1/6

encourage image

There's no tags or description

Looks like no tags are added yet.

Study Analytics
Name
Mastery
Learn
Test
Matching
Spaced

No study sessions yet.

7 Terms

1
New cards

define html tables

HTML tables allow web developers to arrange data into rows and columns.


2
New cards

difference between ul and ol tags

<ul> is for unordered lists, where the order of items doesn't matter, and bullet points are typically used. <ol> is for ordered lists, where items have a specific sequence, and numbers or letters are used to indicate the order of items.

3
New cards

how are html tables created

  1. Start with the <table> element to create the table structure.

  2. Add rows using the <tr> element, with each <tr> representing a new row.

  3. Optionally, use the <th> element to create header cells to label the data in the first row or column.

  4. Insert data cells using the <td> element for the actual data in the table.

4
New cards

list-style-image

you can use a custom image as the marker for list items

5
New cards

List-style

the list-style property is a shorthand property that combines several list-related properties into one.

6
New cards

empty-cell

the empty-cells property allows you to determine whether or not the borders and backgrounds of empty table cells should be displayed.

7
New cards