Search
 
SCRIPT & CODE EXAMPLE
 

HTML

table header html

<!-- <th> means Table Header,
 	 <tr> means Table Rows, and
	 <td> means Table Columns. -->
<table border="2">
  <th></th>
  <tr>
    <td></td>
  </tr>
</table>
<!-- You guys can add bgcolor="color" attributes, if you want to and so on... -->
<th bgcolor="orange">Orange</th>
<td bgcolor="red">Red</td>
<td bgcolor="yellow">Yellow</td>
<!-- To colspan cells use, colspan="value(1,2,3..)". -->
<tr>
  <td>Green</td>
  <td colspan="2">Blue</td>
</tr>
Comment

HTML Table Headers

<table>
  <tr>
    <th>Firstname</th>
    <th>Lastname</th>
    <th>Age</th>
  </tr>
  <tr>
    <td>Jill</td>
    <td>Smith</td>
    <td>50</td>
  </tr>
  <tr>
    <td>Eve</td>
    <td>Jackson</td>
    <td>94</td>
  </tr>
</table>
Comment

html header for all the table

<th colspan="3">    </th>
Comment

PREVIOUS NEXT
Code Example
Html :: html a link tag 
Html :: how to host html website 
Html :: button md file 
Html :: difference between tag and element 
Html :: a href rel 
Html :: multiple form submit for different form action 
Html :: anchor html 
Html :: h1 html 
Html :: collapse bootsrap 
Html :: how to stop moving text in html when you hover over it 
Html :: index.html is stored in folder github 
Html :: vue-date-pick 
Html :: html italic 
Html :: 1x1 transparent image base 64 
Html :: make flex scroll on overflow horizontal 
Html :: html click hide textbox 
Html :: Bootstrap Image Grid (Responsive) 
Html :: how to align select in table cell center html 
Html :: align img bootstrap 
Html :: fork me github ribbon code html css 
Html :: div html 
Html :: tags 
Html :: html how to hide and show multiple 
Html :: html to exe 
Html :: razor view partial view 
Html :: drag and drop angular 
Html :: entrata alerts 
Html :: html "/n" not woring 
Html :: crawler get text, not get html 
Html :: how to change text place in html 
ADD CONTENT
Topic
Content
Source link
Name
4+9 =