-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcontact.html
More file actions
46 lines (44 loc) · 1.47 KB
/
contact.html
File metadata and controls
46 lines (44 loc) · 1.47 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>My Contact Links</title>
<style>
body {
font-family: Arial, sans-serif;
text-align: center;
background-color: #f4f4f4;
}
.social-links {
margin-top: 50px;
}
.social-links a {
text-decoration: none;
color: white;
padding: 10px 20px;
margin: 10px;
border-radius: 5px;
display: inline-block;
font-size: 20px;
}
.facebook {
background-color: #3b5998;
}
.instagram {
background-color: #E1306C;
}
.linkedin {
background-color: #0077b5;
}
</style>
</head>
<body>
<h1>Connect with Me</h1>
<div class="social-links">
<a href="https://www.facebook.com/profile.php?id=100027824941754&mibextid=LQQJ4d" target="_blank" class="facebook">Facebook</a>
<a href="https://www.instagram.com/official_r_i_t_i_k_kumar?igsh=MTF1Y2syNjc3YzNydw%3D%3D&utm_source=qr" target="_blank" class="instagram">Instagram</a>
<a href="https://www.linkedin.com/in/ritik-kumar-ba7931293?utm_source=share&utm_campaign=share_via&utm_content=profile&utm_medium=ios_app" target="_blank" class="linkedin">LinkedIn</a>
</div>
</body>
</html>