forked from sweta123761/Bhoomijal
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcontact.html
86 lines (78 loc) · 4.18 KB
/
contact.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
83
84
85
86
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="description" content="Contact information for the developers. Reach out via email, phone, or social media.">
<title>Contact Developer</title>
<!-- Add Bootstrap CSS -->
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.0-alpha3/dist/css/bootstrap.min.css" rel="stylesheet">
<link rel="icon" href="logoh1.png" type="image/x-icon">
<style>
body {
/* Add a full-page background image */
background-image: url('https://i.pinimg.com/736x/6c/c0/99/6cc099776c601f985b73b15a338d393e.jpg');
background-size: cover;
background-attachment: fixed;
background-position: center;
color: #fff; /* Ensure text is readable */
}
.card {
background: rgba(255, 255, 255, 0.8); /* Slightly transparent card background */
color: #000; /* Text color for cards */
}
footer {
background: rgba(0, 0, 0, 0.7); /* Transparent footer background */
}
</style>
</head>
<body>
<!-- Header Section -->
<header class="py-5 text-center">
<div class="container">
<h1 class="display-4">Contact Us!</h1>
<p class="lead">Feel free to get in touch with us for any inquiries, feedback, or collaboration opportunities.</p>
</div>
</header>
<!-- Developer Contact Info Section -->
<section class="contact-info py-5">
<div class="container">
<div class="row justify-content-center">
<div class="col-md-8">
<div class="card shadow-sm">
<div class="card-body">
<h4 class="card-title text-center mb-4">Get in Touch</h4>
<p class="card-text"><strong>Email:</strong> <a href="mailto:gauri.sachan2005@gmail.com">gauri.sachan2005@gmail.com</a></p>
<p class="card-text"><strong>Phone:</strong> +91 6394604899</p>
<p class="card-text"><strong>Phone:</strong> +91 8779348739</p>
<p class="card-text"><strong>Phone:</strong> +91 9369095956</p>
<p class="card-text"><strong>Phone:</strong> +91 7852005880</p>
<p class="card-text"><strong>Phone:</strong> +91 7983789937</p>
<h5 class="mt-4">Connect on Social Media:</h5>
<div class="d-flex justify-content-around">
<a href="https://www.linkedin.com/in/your-profile" target="_blank" class="d-flex align-items-center">
<img src="linkedin.png" alt="LinkedIn Logo" style="width: 80px; height: 80px; margin-right: 8px;">
</a>
<a href="https://github.com/your-username" target="_blank" class="d-flex align-items-center">
<img src="github.png" alt="GitHub Logo" style="width: 80px; height: 80px; margin-right: 8px;">
</a>
<a href="https://twitter.com/your-username" target="_blank" class="d-flex align-items-center">
<img src="twitter.png" alt="Twitter Logo" style="width: 80px; height: 80px; margin-right: 8px;">
</a>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- Footer Section -->
<footer class="py-4 text-white text-center">
<p>© 2024 BHOOMIJAL. All rights reserved.</p>
</footer>
<!-- Bootstrap JS and Icons -->
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.0-alpha3/dist/js/bootstrap.bundle.min.js"></script>
<!-- Bootstrap Icons for Social Media -->
<script src="https://cdn.jsdelivr.net/npm/bootstrap-icons/font/bootstrap-icons.js"></script>
</body>
</html>