html table tag
Html table style Information: <tr> :- Represents rows. <td> :- used to create data cells. <th> :- used to add table headings. <ol> :- used to create an ordered list. <li> :- include html element program <!doctype html> <html> <head> <title> table program </title> <style> tr:nth-child(even) { background-color: lightgray; } tr:nth-child(odd) { back...