-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathfsd.html
More file actions
49 lines (48 loc) · 1 KB
/
Copy pathfsd.html
File metadata and controls
49 lines (48 loc) · 1 KB
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
<!DOCT<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Profile Links</title>
<style>
body {
font-family: Arial, sans-serif;
background-color: #f4f4f4;
color: #333;
text-align: center;
margin: 20px;
}
h1 {
color: #333;
}
.profile {
display: inline-block;
margin: 20px;
}
.profile img {
width: 150px;
height: 150px;
border-radius: 50%;
cursor: pointer;
transition: transform 0.3s;
}
.profile img:hover {
transform: scale(1.1);
} </style>
</head>
<body>
<h1>Profile Links</h1>
<div class="profile">
<a href="C:\Users\ADMIN\Desktop\23221a0576@fsd\download (1).png"_blank">
<img src="download1.png" alt="My Profile Image">
</a>
<p>My Profile</p>
</div>
<div class="profile">
<a href="C:\Users\ADMIN\Downloads\friend.jpg" target="_blank">
<img src="friend-image.jpg" alt="Friend's Profile Image">
</a>
<p>Friend's Profile</p>
</div>
</body>
</html>