-
Notifications
You must be signed in to change notification settings - Fork 0
/
table.html
83 lines (80 loc) · 2.99 KB
/
table.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
</head>
<body bgcolor="darkblue" text="white">
<table border="2" width="70%">
<thead bgcolor="skyblue">
<tr align="centre">
<th>Name</th>
<th>City</th>
<th>Email</th>
<th>Department</th>
</tr>
</thead>
<tbody bgcolor="lightpink">
<tr align="center">
<td> Aman </td>
<td> Delhi </td>
<td> aman@gmail.com </td>
<td rowspan="3"> IT Department </td>
</tr>
<tr align="center">
<td> Naman </td>
<td> Nainital </td>
<td>naman@gmail.com </td>
</tr>
<tr align="center">
<td> Suman </td>
<td> Dehradhunl </td>
<td>suman@gmail.com </td>
</tr>
<tr align="center">
<td> Mohan </td>
<td> Haryana </td>
<td> Mohan@gmail.com </td>
<td rowspan="3"> HR Department </td>
<tr align="center">
<td> Ajay </td>
<td> Punjab </td>
<td> ajay@gmail.com </td>
</tr>
<tr align="center">
<td> Vijay </td>
<td> Bihar </td>
<td> vijay@gmail.com </td>
</tr>
</tbody>
<tfoot>
<tr align="center">
<td colspan="4" align="center"> Copyrights © 2022 | Designed by BCA 1st Year </td>
</tr>
</tfoot>
</table>
<hr>
<hr>
<h1 align="center"><mark> <u> BEAUTY OF NATURE </u> </mark> </h1>
<table border="3" align="center" width="70%">
<tr align="center">
<td> <img src="images\th (1).jpg" alt="" height="150px" width="200px" >
<h4> Image 1</h4>
</td>
<td> <img src="images\th (2).jpg" alt="" height="150px" width="200px" >
<h4> Image 1</h4>
</td>
<td> <img src="images\362078,xcitefun-nature-beauty-9.jpg" alt="" height="150px" width="200px" >
<h4> Image 1</h4>
</td>
</tr>
<tr align="center">
<td> <img src="images\th (1).jpg" alt="" height="150px" width="200px"></td>
<td> <img src="images\th (2).jpg" alt="" height="150px" width="200px"></td>
<td> <img src="images\362078,xcitefun-nature-beauty-9.jpg" alt="" height="150px" width="200px"></td>
</tr>
</table>
</body>
</html>