-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex5.html
More file actions
33 lines (33 loc) · 798 Bytes
/
index5.html
File metadata and controls
33 lines (33 loc) · 798 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Images</title>
<link rel="stylesheet" href="style2.css">
</head>
<body>
<img width = "410" height="380" src="draw-an-image-of-two-students-studying-in-the-the-park--evening--animated-illustrations-744131744.png" alt="Code Shot">
<table>
<caption>My Employee</caption>
<tr>
<th>Name</th>
<th>Age</th>
<th>Designation</th>
</tr>
<tr>
<th>Harry</th>
<th>45</th>
<th>Programmer</th>
</tr>
<tr>
<th colspan="2">Sam</th>
<th>Maruti</th>
</tr>
<tr>
<th colspan="2">Sam</th>
<th rowspan="2">AI</th>
</tr>
</table>
</body>
</html>