-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcontact us.html
82 lines (80 loc) · 2.52 KB
/
contact us.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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="styles.css">
<title>Contact Us</title>
<style>
body {
background-color: #333533;
color: #fff;
font-family: Arial, sans-serif;
margin: 0;
padding: 0;
}
header {
background-color: #FF5F1F;
color: #fff;
text-align: center;
padding: 20px;
}
h1 {
font-size: 2.5rem;
}
.container {
max-width: 800px;
margin: 20px auto;
padding: 20px;
background-color: rgba(255, 255, 255, 0.1);
box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
border-radius: 5px;
}
p {
line-height: 1.5;
}
.contact-info {
background-color: rgba(255, 255, 255, 0.1);
padding: 20px;
border-radius: 5px;
}
.contact-item {
margin-bottom: 20px;
}
.contact-item h3 {
color: #FF5F1F;
font-size: 1.2rem;
}
</style>
</head>
<body>
<header>
<h1>Contact Us</h1>
</header>
<div class="container">
<h2>Get in Touch</h2>
<p>If you have any questions or need assistance, feel free to reach out to us using the contact information below:</p>
<div class="contact-info">
<div class="contact-item">
<h3>Contact Numbers</h3>
<ul>
<li>Het Patel: +91 70164 13092</li>
<li>Harsh Patel: +91 97232 47551</li>
<li>Hemax Patel: +91 84888 94484</li>
</ul>
</div>
<div class="contact-item">
<h3>Email Addresses</h3>
<ul>
<li>Het Patel: <a href="mailto:[email protected]">[email protected]</a></li>
<li>Harsh Patel: <a href="mailto:[email protected]">[email protected]</a></li>
<li>Hemax Patel: <a href="mailto:[email protected]">[email protected]</a></li>
</ul>
</div>
</div>
</div>
<footer style="text-align: center; margin-top: 30px;">
© 2023 AI World
</footer>
</body>
</html>