Skip to content

Commit 3f0e9a3

Browse files
author
Redwan Sharafat Kabir
committed
create table
1 parent 0eaa2d0 commit 3f0e9a3

File tree

2 files changed

+60
-0
lines changed

2 files changed

+60
-0
lines changed

HTML5 and CSS/HTML5 and CSS.csproj

+1
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,7 @@
2222
<Content Include="index.html" />
2323
<Content Include="Scripts\bootstrap.js" />
2424
<Content Include="Scripts\jquery-3.3.1.js" />
25+
<Content Include="table.html" />
2526
<Content Include="Tagging and Attribute.html" />
2627
<Content Include="text formatting.html" />
2728
</ItemGroup>

HTML5 and CSS/table.html

+59
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,59 @@
1+
<!DOCTYPE html>
2+
<html lang="en" xmlns="http://www.w3.org/1999/xhtml">
3+
<head>
4+
<meta charset="utf-8" />
5+
<title>tables</title>
6+
</head>
7+
<body>
8+
<table border="1" height="100" cellspacing="5" cellpadding="5">
9+
<thead>
10+
<tr>
11+
<th height="50" colspan="7">Student Information</th>
12+
</tr>
13+
14+
<tr>
15+
<th rowspan="2">Institution</th>
16+
<th rowspan="2">City</th>
17+
<th width="100">ID</th>
18+
<th width="250">Name</th>
19+
<th width="80">Section</th>
20+
<th width="150">Department</th>
21+
<th width="150">Phone Number</th>
22+
</tr>
23+
</thead>
24+
<tbody>
25+
<tr>
26+
<td rowspan="2">Daffodil International University</td>
27+
<td rowspan="2">Dhanmondi</td>
28+
<td>171-15-8737</td>
29+
<td>&nbsp;Redwan Sharafat Kabir</td>
30+
<td>&nbsp;D</td>
31+
<td>&nbsp;CSE</td>
32+
<td>
33+
<table border="1" width="150">
34+
<tr>
35+
<td>&nbsp;01911432556</td>
36+
</tr>
37+
<tr>
38+
<td>&nbsp;01723076992</td>
39+
</tr>
40+
</table>
41+
</td>
42+
</tr>
43+
<tr>
44+
<td>171-15-8735</td>
45+
<td>&nbsp;Neyma Syltana Nipu</td>
46+
<td>&nbsp;D</td>
47+
<td>&nbsp;CSE</td>
48+
<td>
49+
<table border="1" width="150">
50+
<tr>
51+
<td>&nbsp;01813939705</td>
52+
</tr>
53+
</table>
54+
</td>
55+
</tr>
56+
</tbody>
57+
</table>
58+
</body>
59+
</html>

0 commit comments

Comments
 (0)