xFactorSchool.com(Beta)
How to Do Examples
Python Examples
HTML Examples
Code Examples
C Code Examples
C++ Code Examples
C# Code Examples
Java Code Examples
Python Code Examples
HTML Code Examples
CSS Code Examples
JavaScript Code Examples
Online Editor
C Code Editor
C++ Code Editor
C# Code Editor
Java Code Editor
Python Code Editor
HTML Code Editor
CSS Code Editor
JavaScript Code Editor
Practice how to create a basic table in an HTML page
HTML Online Editor
Run Code
More HTML Sample Codes
<!DOCTYPE html> <html> <head> <title>Table in HTML Page</title> <!-- Title of the page--> </head> <body> <h1>Example of Table in a Webpage</h1> <hr/> <!--<table> is used to create table--> <table> <tr> <!--<tr> is used to create table row--> <th>Name</th> <!--<th> is used to create table header--> <th>Gender</th> <th>Age</th> </tr> <tr> <td>Alice</td> <!--<td> is used to create table data--> <td>Female</td> <td>15</td> </tr> <tr> <td>Peter</td> <td>Male</td> <td>16</td> </tr> </table> <p><table> is used to create table. <tr> is used to create a table row. </p> </body> </html>