-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathp17.html
More file actions
69 lines (63 loc) · 1.25 KB
/
p17.html
File metadata and controls
69 lines (63 loc) · 1.25 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
<html>
<head>
<title>HTML TABLE</title>
<style>
table, th, td{
/*border: 2px;
border-color: grey;
border-style:solide*/
border: 2px solid teal;
padding:20px;
border-collapse: collapse;
}
</style>
</head>
<body>
<center>
<h1>TABLE - CSS</h1>
</center>
<table>
<caption>Student Details</caption>
<tr>
<th>#</th>
<th>Name</th>
<th>Mobile</th>
</tr>
<tr>
<td>1</td>
<td>Rajeshwari</td>
<td>100</td>
</tr>
<tr>
<td>2</td>
<td>Neeraja</td>
<td>200</td>
</tr>
<tr>
<td>3</td>
<td>Keerthana</td>
<td>300</td>
</tr>
<tr>
<td>4</td>
<td>Kavya</td>
<td>400</td>
</tr>
<tr>
<td>5</td>
<td>Chandu</td>
<td>100</td>
</tr>
<tr>
<td>6</td>
<td>Nandini</td>
<td>600</td>
</tr>
<tr>
<td>7</td>
<td>Priya</td>
<td>700</td>
</tr>
</table>
</body>
</html>