-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathTable.html
More file actions
70 lines (62 loc) · 1.83 KB
/
Table.html
File metadata and controls
70 lines (62 loc) · 1.83 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Creating Tables</title>
</head>
<body bgcolor="lightpink">
<h1 align="center">Creating and using tables </h1>
<table border="1" bgcolor="aqua" align="center" cellpadding="15">
<caption align="bottom">my table</caption>
<tr>
<th>Name </th>
<th>roll</th>
<th>sec </th>
</tr>
<tr>
<td>arsh</td>
<td>10</td>
<td>A</td>
</tr>
<tr>
<td>amih</td>
<td>1</td>
<td>D</td>
</tr> <br>
<table border="1" bgcolor="white" align="center" cellpadding="15">
<caption align="bottom">my table</caption>
<tr>
<th>Name </th>
<th>roll</th>
<th>sec </th>
</tr>
<tr>
<td colspan="2">arsh</td>
<td rowspan="2">10</td>
<td>A</td>
</tr>
<tr>
<td>amit</td>
<td>1</td>
<td>D</td>
</tr> <br>
</table>
<table border width="750" bgcolor="lightyellow">
<tr>
<td colspan="4" align="center">
<h1><u>Page Banner</u></h1>
</td>
</tr>
<tr>
<td rowspan="2" width="30%" bgcolor="white">nav</td>
<td colspan="2" width="30%"><b>feature<b></td>
<td rowspan="2" width="30%"><u>authentic</u></td>
</tr>
<tr>
<td width="25%">features</td>
<td width="35%" bgcolor="grey"><i>krishna<i></td>
</tr>
</table>
</body>
</html>