-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcontact.html
100 lines (93 loc) · 2.34 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
98
99
100
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Contact</title>
<style>
/* CSS styles for contact.html */
body {
font-family: Arial, sans-serif;
margin: 0;
padding: 0;
background-color: #f4f4f4;
}
header {
background-color: #333;
color: #fff;
padding: 10px 20px;
text-align: center;
}
nav {
background-color: #444;
color: #fff;
text-align: center;
padding: 10px;
}
nav a {
color: #fff;
text-decoration: none;
padding: 0 10px;
}
section {
padding: 20px;
margin: 20px auto;
background-color: rgba(255, 255, 255, 0.8); /* Transparent white */
border-radius: 5px;
width: 80%;
}
footer {
background-color: #333;
color: #fff;
text-align: center;
padding: 10px 20px;
position: fixed;
bottom: 0;
width: 100%;
}
.contact-info {
margin-top: 20px;
}
.contact-info h2 {
margin-bottom: 10px;
}
.contact-info p {
margin: 5px 0;
}
.contact-info a {
color: #007bff;
text-decoration: none;
}
.contact-info a:hover {
text-decoration: underline;
}
</style>
</head>
<body>
<nav>
<a href="index.html">Home</a>
<a href="about.html">About</a>
<a href="registration.html">Registration</a>
<a href="services.html">Services</a>
<a href="contact.html">Contact</a>
</nav>
<header>
<h1>Contact Us</h1>
</header>
<section class="contact-info">
<h2>Email</h2>
<p>souramukherjee1111999@gmail.com</p>
</section>
<section class="contact-info">
<h2>LinkedIn</h2>
<p><a href="https://www.linkedin.com/in/sourav-mukherjee-892177205">LinkedIn Profile</a></p>
</section>
<section class="contact-info">
<h2>GitHub</h2>
<p><a href="https://github.com/Srvmukherjee">GitHub Profile</a></p>
</section>
<footer>
<p>© 2024 My Website. All rights reserved.</p>
</footer>
</body>
</html>