HTML Class 7 #.
Asslam o Alaikum dear Friends. A complete course with short and easy classes. so let's start your HTML Class.
HTML Class 7 #.
In This class i tell you how to make table in a page .
<!DOCTYPE html>
<html>
<head>
<title>Untitled</title>
<meta charset="UTF-8"/>
<link rel="stylesheet" href="" type="text/css"/>
</head>
<body>
<table border="3px">
<td>
td tag elements are used for table cells
</td>
<td>
this is a cell
</td>
<tr>
<td>
td tag is used to create table column
</body>
</html>
In This class i tell you how to make table in a page .
Code :
<!DOCTYPE html>
<html>
<head>
<title>Untitled</title>
<meta charset="UTF-8"/>
<link rel="stylesheet" href="" type="text/css"/>
</head>
<body>
<table border="3px">
<td>
td tag elements are used for table cells
</td>
<td>
this is a cell
</td>
<tr>
<td>
td tag is used to create table column
</td>
<td>
tr tag is used to create table rows
</td>
</tr>
</table></td>
</tr>
</body>
</html>
OUTPUT
td tag elements are used for table cells
this is a cell
td tag is used to create table column
tr tag is used to create table rows
td tag elements are used for table cells
this is a cell
td tag is used to create table column
tr tag is used to create table rows
Thanks For reading :
Meet you in next Class.
Comment me if you have any trouble or question .
No comments:
Post a Comment