-
Notifications
You must be signed in to change notification settings - Fork 0
/
album.html
40 lines (40 loc) · 1.46 KB
/
album.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Photo Album Snapshots</title>
</head>
<body>
<div>
<h2>2024-04-15T19:34:00.420312</h2>
<h3>Description: snapShot After first selfie</h3>
<svg width ="1000" height="800" xmlns="http://www.w3.org/2000/svg">
<rect x="200.000000" y="200.000000" width="50.000000" height="100.000000" fill="rgb(255,0,0)" />
<ellipse cx="500.000000" cy="100.000000" rx="60.000000" ry="30.000000" fill="rgb(0,255,1)" />
</svg>
</div>
<div>
<h2>2024-04-15T19:34:00.421442</h2>
<h3>Description: snapShot 2nd selfie</h3>
<svg width ="1000" height="800" xmlns="http://www.w3.org/2000/svg">
<rect x="100.000000" y="300.000000" width="25.000000" height="100.000000" fill="rgb(255,0,0)" />
<ellipse cx="500.000000" cy="100.000000" rx="60.000000" ry="30.000000" fill="rgb(0,255,1)" />
</svg>
</div>
<div>
<h2>2024-04-15T19:34:00.421649</h2>
<h3>Description: snapShot</h3>
<svg width ="1000" height="800" xmlns="http://www.w3.org/2000/svg">
<rect x="100.000000" y="300.000000" width="25.000000" height="100.000000" fill="rgb(0,0,255)" />
<ellipse cx="500.000000" cy="400.000000" rx="60.000000" ry="30.000000" fill="rgb(0,255,1)" />
</svg>
</div>
<div>
<h2>2024-04-15T19:34:00.421775</h2>
<h3>Description: Selfie after removing the rectangle from the picture</h3>
<svg width ="1000" height="800" xmlns="http://www.w3.org/2000/svg">
<ellipse cx="500.000000" cy="400.000000" rx="60.000000" ry="30.000000" fill="rgb(0,255,1)" />
</svg>
</div>
</body>
</html>