In this article we will learn about some of the frequently asked HTML programming questions in technical like “how to create table box html” Code Answer’s. When creating scripts and web applications, error handling is an important part. If your code lacks error checking code, your program may look very unprofessional and you may be open to security risks. Error or stack handling on html was simple and easy. An error message with filename, line number and a message describing the error is sent to the browser. This tutorial contains some of the most common error checking methods in HTML. Below are some solution about “how to create table box html” Code Answer’s.
html create a table
xxxxxxxxxx
1
<html>
2
<head>
3
<title>Working with HTML Tables</title>
4
</head>
5
<body>
6
<table> <!-- create an table object -->
7
<tr> <!-- "tr" represents a row -->
8
<th>Name</th> <!-- use "th" to indicate header row -->
9
<th>Date of Birth</th>
10
<th>Weight</th>
11
</tr>
12
<tr> <!-- once again use tr for another row -->
13
<td>Mary</td> <!-- use "td" henceforth for normal rows -->
14
<td>12/13/1994</td>
15
<td>130</td>
16
</tr>
17
</table>
18
</body>
19
</html>
how to create table box html
xxxxxxxxxx
1
dgfdsgdszg