-
Notifications
You must be signed in to change notification settings - Fork 1
/
htmltable.html
114 lines (107 loc) · 2.15 KB
/
htmltable.html
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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="robots" content="index,follow">
<title>learning table aspects</title>
</head>
<body>
<p>
<strong> this is the starting of the table</strong>
</p>
<table>
<thead>
<tr>
<th>name</th>
<th>id</th>
<th>profession</th>
<th>gender</th>
<th>locatiom</th>
</tr>
</thead>
<tbody>
<tr>
<td>abhishek nayak</td>
<td>2768</td>
<td>programer</td>
<td>male</td>
<td>bhubaneswar</td>
</tr>
<tr>
<td>adarsh nayak</td>
<td>4768</td>
<td>doctor</td>
<td>male</td>
<td>bhubaneswar</td>
</tr>
<tr>
<td>abhishek nayak</td>
<td>4868</td>
<td>web designer</td>
<td>male</td>
<td>bhubaneswar</td>
</tr>
</tbody>
</table>
<p>
<bold> this is the ending of the table</bold>
</p>
<div>
<table>
<thead>
<tr>
<th>day</th>
<th> 7 to 10 am </th>
<th> 10 to 12 am </th>
<th> 4 to 6 am </th>
</tr>
</thead>
<tbody>
<tr>
<td>monday</td>
<td>pubg</td>
<td>code</td>
<td>code</td>
</tr>
<tr>
<td>tuesday</td>
<td>film</td>
<td>app development</td>
<td>hacking </td>
</tr>
<tr>
<td>wednesday</td>
<td>calling friends</td>
<td>enjoying</td>
<td>coding</td>
</tr>
<tr>
<td>thursday</td>
<td>web designing</td>
<td>web developing</td>
<td>udemy classes</td>
</tr>
<tr>
<td>friday</td>
<td>chating</td>
<td>coding</td>
<td>hacking</td>
</tr>
<tr>
<td>saturday</td>
<td>google learn</td>
<td>python</td>
<td>tkinter</td>
</tr>
<tr>
<td>sunday</td>
<td>sql</td>
<td>datastructure</td>
<td>php</td>
</tr>
</tbody>
</table>
</div>
</body>
</html>