-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathb (1).html
52 lines (48 loc) · 1018 Bytes
/
b (1).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
<!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="https://images.app.goo.gl/Y3EgJwka5nKz8Qpq7" target="_blank">
<img src="" alt="My Profile Image">
</a>
<p>My Profile</p>
</div>
<div class="profile">
<a href="https://images.app.goo.gl/gx3sQk9jid4b4gmH8" target="_blank">
<img src="friend-image.jpg" alt="Friend's Profile Image">
</a>
<p>Friend's Profile</p>
</div>
</body>
</html>