Posts

Showing posts with the label HTML Tables

html table tag

Image
                             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...