-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathusing_tables.html
More file actions
42 lines (42 loc) · 930 Bytes
/
Copy pathusing_tables.html
File metadata and controls
42 lines (42 loc) · 930 Bytes
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Table</title>
</head>
<body>
<table border="1" width="80%"><caption>Information
<tr>
<th>S.No</th>
<th>Name</th>
<th>Contact no.</th>
<th>Course</th>
</tr>
<tr>
<td>01</td>
<td>Harpal</td>
<td>9875648653</td>
<td>Data Structure</td>
</tr>
<tr>
<td>02</td>
<td>Eshank</td>
<td>6396983267</td>
<td>Web designing</td>
</tr>
<tr>
<td>03</td>
<td>Vedansh</td>
<td>9157532586</td>
<td>Digital Electronics</td>
</tr>
<tr>
<td>04</td>
<td>Utkarsh</td>
<td>9945678574</td>
<td>Data Scince</td>
</tr></caption>
</table>
</body>
</html>