Search
 
SCRIPT & CODE EXAMPLE
 

HTML

table html tages

<table>
  <tr> <!-- This is the first row -->
    <th>This is the heading</th>
    <th>Next heading to the right</th>
  </tr>
  <tr> <!-- This is the second row -->
    <td>This is where the table data goes</td>
    <td>This is the second columns data</td>
  </tr>
</table>
Comment

html5 table

HTML123456789101112<table data-order='[[ 1, "asc" ]]' data-page-length='25'>    <thead>        <tr>            <th>Name</th>            <th>Position</th>            <th>Office</th>            <th>Age</th>            <th>Start date</th>            <th data-class-name="priority">Salary</th>        </tr>    </thead></table>
Comment

HTML table tag

<!DOCTYPE html>
<html>
<style>
table, th, td {
  border:1px solid black;
}
</style>
<body>

<h2>A basic HTML table</h2>

<table style="width:100%">
  <tr>
    <th>Company</th>
    <th>Contact</th>
    <th>Country</th>
  </tr>
  <tr>
    <td>Alfreds Futterkiste</td>
    <td>Maria Anders</td>
    <td>Germany</td>
  </tr>
  <tr>
    <td>Centro comercial Moctezuma</td>
    <td>Francisco Chang</td>
    <td>Mexico</td>
  </tr>
</table>

<p>To understand the example better, we have added borders to the table.</p>

</body>
</html>
Comment

PREVIOUS NEXT
Code Example
Html :: how to change the font in html 
Html :: how to run a html code in visual studio 
Html :: qr code sccanner 
Html :: gjgug 
Html :: How to lazily load images or load only when scrolled 
Html :: html text next line 
Html :: toptal html interview questions 
Html :: html loading but not showing up 
Html :: (i=0;i<100;i++) 
Html :: name attribute use case html 
Html :: document.getElementByClassName("preview").innerHTML=src; 
Html :: html encrypt email from bots 
Html :: shchema keyref et key use 
Html :: Creating WebLinks in a ReadME 
Html :: theme my login/logout shortcode 
Html :: html language 
Html :: span blast html 
Html :: html like symbol 
Html :: html body farbe ändern 
Html :: date 
Html :: time sequelize html example stack overflow 
Html :: cheked html 
Html :: Using aria-valuetext 
Html :: how to make a text website 
Html :: add logo in html 
Html :: afficher une page web dans une page web 
Html :: online html css generator 
Html :: what is mac cloudkit 
Html :: Python Video Playing 
Html :: how to show limited text in html greeper 
ADD CONTENT
Topic
Content
Source link
Name
9+3 =