-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathimg.html
More file actions
21 lines (21 loc) · 713 Bytes
/
img.html
File metadata and controls
21 lines (21 loc) · 713 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Passport Size Photo</title>
<style>
/* CSS to set the size of the image */
.passport-photo {
width: 10mm; /* Adjust as needed */
height: 10mm; /* Adjust as needed */
border: 1px solid #000; /* Add a border for better visualization */
}
</style>
</head>
<body>
<h1>PHOTO</h1>
<!-- Image source should be replaced with the actual image path -->
<img src="c:\Users\vsjai\Pictures\WhatsApp Image 2024-02-23 at 09.06.51_88403d93.jpg" alt="IMAGE" >
</body>
</html>