-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathContact.html
More file actions
55 lines (55 loc) · 1.95 KB
/
Contact.html
File metadata and controls
55 lines (55 loc) · 1.95 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
50
51
52
53
54
55
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Contact</title>
<style>
body {
font-family: 'Arial', sans-serif;
background-color: #f4f4f4;
color: #333;
line-height: 1.6;
padding: 20px;
}
.contact-info {
width: 80%;
margin: 20px auto;
background: #fff;
padding: 20px;
box-shadow: 0 5px 10px rgba(0,0,0,0.1);
text-align: center;
}
.contact-info h3 {
margin: 10px 0;
}
.contact-info a {
display: inline-block;
margin: 5px;
}
.contact-info img {
width: 50px; /* Adjust the size as needed */
height: auto;
vertical-align: middle;
}
</style>
</head>
<body>
<div class="contact-info">
<h3>Email:</h3>
<a href="mailto:divyanshu151102@gmail.com" target="_blank" rel="noopener noreferrer">divyanshu151102@gmail.com</a>
<h3>Instagram handle:</h3>
<a href="https://www.instagram.com/divyanshu.1511/?hl=en" target="_blank" rel="noopener noreferrer">
<img src="./assets/instagram-logo-messenger-icon-realistic-social-media-logotype-instagram-app-button_811406-175.avif" alt="Instagram" /> myhandle
</a>
<h3>LinkedIn Profile:</h3>
<a href="https://www.linkedin.com/in/divyanshu-kushwaha-214423251/" target="_blank" rel="noopener noreferrer">
<img src="./assets/linkedinimages.png" alt="LinkedIn" /> myProfile
</a>
<h3>Discord:</h3>
<a href="https://discord.com/users/temp_dk1511" target="_blank" rel="noopener noreferrer">
<img src="./assets/discord-blogroll-1655488022938.jpg" alt="Discord" />
</a>
</div>
</body>
</html>