Search
 
SCRIPT & CODE EXAMPLE
 

HTML

table row html

<table>
	<tr> <!-- Table Row - 1 -->
    	<td>Column 1</td>
        <td>Column 2</td>
    </tr>
	<tr> <!-- Table Row - 2 -->
    	<td>Column 1</td>
        <td>Column 2</td>
    </tr>
</table>
Comment

table rows 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

PREVIOUS NEXT
Code Example
Html :: content ai writer 
Html :: how to import popper.js 
Html :: pgadmin erd tool existing database 
Html :: html theme color 
Html :: alert tailwind css 
Html :: style tag html 
Html :: add subject to mailto 
Html :: show scrollbar only when scrolling 
Html :: html italic text 
Html :: bootstrap dropdown with checkbox 
Html :: vs code view release notes 
Html :: html redirect after alert 
Html :: nunjucks variables 
Html :: blue color html code 
Html :: meta property="og:description" 
Html :: nested select option in html 
Html :: placeholder in date input html 
Html :: how to align input boxes in html 
Html :: description list html 
Html :: remove cell border css 
Html :: vuejs v-for array index 
Html :: sup html 
Html :: limit number of values in a twxt input 
Html :: html tags 
Html :: link to google icons embed in my website 
Html :: how to pass dynamic url in Link react 
Html :: how to add video in html 
Html :: html how to start a page 
Html :: html make an alert for delete 
Html :: name input html 
ADD CONTENT
Topic
Content
Source link
Name
8+5 =