-
Notifications
You must be signed in to change notification settings - Fork 0
/
contact.html
97 lines (88 loc) · 2.71 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
87
88
89
90
91
92
93
94
95
96
97
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Contact Us</title>
<style>
body {
font-family: Arial, sans-serif;
margin: 0;
padding: 0;
background-color: #f0f0f0;
position: relative;
}
.background-image {
width: 100%;
height: 100vh;
object-fit: cover;
position: absolute;
top: 0;
left: 0;
z-index: -1;
}
.heading-container {
background-color: rgba(106, 102, 116, 0.8);
padding: 40px 20px;
text-align: center;
position: relative;
}
h3 {
color: #fff;
margin: 0;
font-size: 2em;
}
.paragraph-container {
width: 85%;
max-width: 900px;
margin: 20px auto;
padding: 20px;
background-color: rgba(48, 45, 45, 0.7);
color: #fff;
box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
border-radius: 8px;
position: relative;
text-align: center; /* Center align text for better look */
}
p {
margin-bottom: 20px;
line-height: 1.6;
font-size: 1.2em;
text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}
.button-container {
margin-top: 20px;
}
.social-button {
display: inline-block;
width: 50px; /* Adjust size as needed */
height: 50px; /* Adjust size as needed */
margin: 0 10px;
}
.social-button img {
width: 100%;
height: auto;
}
</style>
</head>
<body>
<img src="images/catbg2.jpg" alt="Background Image" class="background-image">
<div class="heading-container">
<h3>Want to get in contact with us?</h3>
</div>
<div class="paragraph-container">
<p>Hi, I'm Anushka, creator of Kahu. For any queries, you may contact me at:</p>
<div class="button-container">
<a href="https://www.linkedin.com/in/your-profile" class="social-button" target="_blank">
<img src="images/linkedin.png" alt="LinkedIn Logo">
</a>
<a href="mailto:[email protected]" class="social-button">
<img src="images/gmail.png" alt="Gmail Logo">
</a>
<a href="https://github.com/your-profile" class="social-button" target="_blank">
<img src="images/git2.png" alt="GitHub Logo">
</a>
</div>
</div>
</body>
</html>