-
Notifications
You must be signed in to change notification settings - Fork 0
/
contactus.html
105 lines (94 loc) · 2.92 KB
/
contactus.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
98
99
100
101
102
103
104
105
<!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>
/* Dark-themed background */
body {
font-family: 'Arial', sans-serif;
margin: 0;
padding: 0;
background-color: #111; /* Dark background color */
color: #fff; /* Light text color */
text-align: center;
}
/* Header Styles */
header {
background-color: #001f3f; /* Dark blue header background */
padding: 20px;
font-size: 24px;
}
/* Contact Info Styles */
.contact-info {
margin-top: 50px;
padding: 20px;
}
.contact-info h2 {
color: #fff; /* Light text color */
}
.contact-links {
display: flex;
flex-direction: column;
align-items: center;
margin-top: 20px;
}
.contact-links a {
text-decoration: none;
color: #0074d9; /* Link color */
font-size: 18px;
transition: color 0.3s, transform 0.3s;
margin: 10px 0;
background-color: #001f3f; /* Dark blue background */
padding: 10px 20px;
border-radius: 5px;
}
.contact-links a:hover {
color: #00a0ff; /* Hover color */
transform: scale(1.1); /* Hover zoom effect */
}
/* Footer Styles */
footer {
background-color: #001f3f;
padding: 20px;
font-size: 16px;
}
/* Background Image Styles */
.background-image {
background-image: url('https://e0.pxfuel.com/wallpapers/912/989/desktop-wallpaper-top-gun-maverick-top-gun-2.jpg'); /* Set the path to your background image */
background-size: cover;
background-repeat: no-repeat;
background-position: center center;
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
opacity: 0.2; /* Adjust the background image opacity as needed */
z-index: -1;
}
</style>
</head>
<body>
<!-- Background Image -->
<div class="background-image"></div>
<!-- Header -->
<header>
<h1>Contact Us</h1>
</header>
<!-- Contact Information -->
<div class="contact-info">
<h2>Contact Information</h2>
<div class="contact-links">
<a href="mailto:[email protected]">Email: [email protected]</a>
<a href="https://www.linkedin.com/in/shiv-sharma-84606b256" target="_blank">LinkedIn Profile</a>
<a href="navyy.html" target="_blank">Website</a>
</div>
</div>
<!-- Footer -->
<footer>
<p>© 2023 Navy World</p>
</footer>
</body>
</html>