Computer Science, asked by mraj73775, 4 months ago

1. the elements used to define the structure of a table are ______,______,_______and_______​
2. The _____ is used to provide table data.
3. HTML code for unordered list and ordered list

Answers

Answered by krisshnamishra30
1

Unorderd list = UL , orders list = OL

Answered by varshamittal029
0

Concept:

HTML is the most widely used markup language on the internet. Technologies such as Cascading Style Sheets (CSS) and programming languages like JavaScript can assist.

Explanation:

1. The elements used to define the structure of a table are <table>, <th>, <tr> and <td>.

<table> - Defines a table

<th> - Defines a header cell in a table

<tr> - Defines a row in a table

<td> - Defines a cell in a table

2. The <td> is used to provide table data.

<td> Defines a cell in a table

3. HTML code for unordered list and ordered list.

The <ul> tag begins an unordered list. The <li> tag is used to begin each list item.

The <ol> tag begins an ordered list. The <li> tag is used to begin each list item.

Similar questions