HTML : HTML is the basic programming languageand easy to learn. Hyper text markup language(HTML) is a Easy and simple to excute programming language, Specially the use of html for the web development and desingning the web pages, web thumbnail, custom web designing for website and also use in the create a table and application forms etc.
Let's Start the here you learn how to create the HTML table for the blogger and the wordpress website -
How to create HTML table in the blogger and also in the wordpress -
There are not much difference between the blogger and the wordpress, here you create HTML table very easy by following some keywords or steps -
Here i want to create a 3x3(3 column, 3 row) table with help of html -
<html>
<head>
<body>
<h1>HeadingText</h1>
<table id= "simple_table">
<tbody><tr>
<th><span style="font-family: choose font; font size: normal;">Name of candidate</span></th>
<th><span style="font-family: choose font; font size: normal;">Age of candidate</span></th>
<th><span style="font family: choose font; font size: normal;">candidate's Profession</span></th>
</tr>
<tr>
<td><span style="font-family: choose font; font-size: normal;">Akash Pal</span></td>
<td><span style="font-family: choose font; font-size: normal;">19 year</span></td>
<td><span style="font-family: choose font; font-size: normal;">civil Engineer</span></td>
</tr>
<tr>
<td><span style="font-family: choose font; font-size: normal;">Vaibhav Kumar</span></td>
<td><span style="font-family: choose font; font-size: normal;">18 year</span></td>
<td><span style="font family: choose font; font-size: normal;">Student</span></td>
</tr>
<tr>
<td><span style="font-family: choose font; font-size: normal;">Akshay singh</span></td>
<td><span style="font-family: choose font; font-size: normal;">20 year</span></td>
<td><span style="font-family: choose font; font-size: normal;">Web Designer</span></td>
</tr>
<tr>
<td><span style="font family: choose font; font size: normal;">Abhinay</span></td>
<td><span style="font family: choose font; font size: normal;">22</span></td>
<td><span style="font family: choose font; font size: normal;">Businessman</span></td>
</tr>
</tbody></table>