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 :: time.mktime 
Html :: h2 in html 
Html :: how to display image in div using id in html 
Html :: html onclick not working 
Html :: country select in bootstrap form 
Html :: how to select only one checkbox in html 
Html :: how to add html in useState 
Html :: p tags 
Html :: html button 
Html :: bootstrap jumbotron with navbar 
Html :: html tooltip 
Html :: html <input 
Html :: how to create js code 
Html :: v model vue 
Html :: checkbox value 
Html :: html in page navigation 
Html :: html renderer online 
Html :: drag and drop angular 
Html :: what is the code element in html 
Html :: title attribute in html 
Html :: wow html 
Html :: comsumsi api axios 
Html :: navbar html 
Html :: carousel in bootstrap 
Html :: html card 
Html :: HTML <ins Element 
Html :: Adding multiple class using ng-class 
Html :: copy table to clipboard html 
Html :: mvc required field validation not working 
Html :: radio 
ADD CONTENT
Topic
Content
Source link
Name
7+9 =