-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcontact.html
More file actions
65 lines (60 loc) · 1.92 KB
/
contact.html
File metadata and controls
65 lines (60 loc) · 1.92 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
56
57
58
59
60
61
62
63
64
65
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Contact Us - Imp-Vise</title>
<style>
body {
font-family: Arial, sans-serif;
margin: 0;
padding: 0;
background-color: #f4f4f4;
text-align: center;
}
.container {
max-width: 600px;
margin: 50px auto;
padding: 20px;
background: white;
border-radius: 10px;
box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
h1 {
color: #008080;
}
p {
font-size: 18px;
color: #333;
}
.contact-info {
margin-top: 20px;
}
.contact-info p {
margin: 10px 0;
}
.contact-info a {
color: #008080;
text-decoration: none;
font-weight: bold;
}
.contact-info a:hover {
text-decoration: underline;
}
</style>
</head>
<body>
<div class="container">
<h1>Contact Us</h1>
<p>Have any questions or need support? Reach out to us!</p>
<div class="contact-info">
<p><strong>Email:</strong> <a href="mailto:sampletestproject0307@gmail.com">sampletestproject0307@gmail.com</a></p>
<p><strong>Phone:</strong> +91 98765 43210</p>
<p><strong>Phone:</strong> +91 9962610055</p>
<p><strong>Phone:</strong> +91 98765 44320</p>
<p><strong>Instagram:</strong> <a href="https://www.instagram.com/Imp_wise" target="_blank">@Imp_vise</a></p>
<p><strong>Instagram:</strong> <a href="https://www.instagram.com/_saiprashanth_24" target="_blank">@saiprashanth_24</a></p>
</div>
</div>
</body>
</html>