Wednesday, January 9, 2019

HTML Class 7# .



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 .

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>
 </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


Thanks For reading :

Meet you in next Class.

Comment me if you have any trouble or question .

No comments:

Post a Comment

Recent added

TypeScript Class 5

Common Syntax Errors in TypeScript and How to Avoid Them Syntax errors are among the most common issues developers encounter when writing Ty...