Skip to content

Commit 5584bec

Browse files
author
Redwan Sharafat Kabir
committed
1 parent 2e54a17 commit 5584bec

File tree

4 files changed

+31
-4
lines changed

4 files changed

+31
-4
lines changed

HTML5 and CSS/CSS table.html

+20
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
<!DOCTYPE html>
2+
<html lang="en" xmlns="http://www.w3.org/1999/xhtml">
3+
<head>
4+
<meta charset="utf-8" />
5+
<style>
6+
7+
</style>
8+
</head>
9+
<body>
10+
<table>
11+
<thead>
12+
13+
</thead>
14+
15+
<tbody>
16+
17+
</tbody>
18+
</table>
19+
</body>
20+
</html>

HTML5 and CSS/First Style.css

+1-1
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
font-size: 150%;
2121
}
2222
.head {
23-
color: brown;
23+
color: navy;
2424
background-color: silver;
2525
font-size: 300%;
2626
}

HTML5 and CSS/HTML5 and CSS.csproj

+1
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@
1313
<Content Include="CSS Div.html" />
1414
<Content Include="CSS inline.html" />
1515
<Content Include="CSS selector, internal and external.html" />
16+
<Content Include="CSS table.html" />
1617
<Content Include="CSS text and font.html" />
1718
<Content Include="entity.html" />
1819
<Content Include="favicon.ico" />

HTML5 and CSS/table.html

+9-3
Original file line numberDiff line numberDiff line change
@@ -5,14 +5,14 @@
55
<title>tables</title>
66
</head>
77
<body>
8-
<table border="1" height="100" cellspacing="5" cellpadding="5">
8+
<table border="10" height="100" cellspacing="5" cellpadding="5">
99
<thead>
1010
<tr>
1111
<th height="50" colspan="7">Student Information</th>
1212
</tr>
1313

1414
<tr>
15-
<th rowspan="2">Institution</th>
15+
<th >Institution</th>
1616
<th rowspan="2">City</th>
1717
<th width="100">ID</th>
1818
<th width="250">Name</th>
@@ -46,10 +46,16 @@
4646
<td>&nbsp;D</td>
4747
<td>&nbsp;CSE</td>
4848
<td>
49-
<table border="1" width="150">
49+
<table width="150">
50+
<tr>
51+
<td>&nbsp;01813939705</td>
52+
</tr>
5053
<tr>
5154
<td>&nbsp;01813939705</td>
5255
</tr>
56+
<!--<tr>
57+
<td>&nbsp;01813939705<br>&nbsp;01813939705</td>
58+
</tr>-->
5359
</table>
5460
</td>
5561
</tr>

0 commit comments

Comments
 (0)