You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
69 lines
2.0 KiB
69 lines
2.0 KiB
<!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 Page">
|
|
<title>Contact Information</title>
|
|
<style>
|
|
body {
|
|
font-family: Arial, Helvetica, sans-serif;
|
|
background-color: #f9f9f9;
|
|
margin: 0;
|
|
padding: 0;
|
|
}
|
|
.container {
|
|
width: 80%;
|
|
margin: 50px auto;
|
|
padding: 20px;
|
|
background-color: #fff;
|
|
border-radius: 8px;
|
|
box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
|
|
}
|
|
.text-center {
|
|
text-align: center;
|
|
}
|
|
.contact-info {
|
|
font-size: 1.2em;
|
|
margin-bottom: 30px;
|
|
}
|
|
.contact-info p {
|
|
margin: 10px 0;
|
|
}
|
|
.contact-info a {
|
|
color: #3498db;
|
|
text-decoration: none;
|
|
}
|
|
.btn {
|
|
display: inline-block;
|
|
padding: 10px 20px;
|
|
background-color: #3498db;
|
|
color: white;
|
|
border-radius: 5px;
|
|
text-decoration: none;
|
|
font-size: 16px;
|
|
text-align: center;
|
|
cursor: pointer;
|
|
}
|
|
.btn:hover {
|
|
background-color: #2980b9;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
|
|
<div class="container">
|
|
<h1 class="text-center">Contact Information</h1>
|
|
<div class="contact-info">
|
|
<p><strong>Phone Number:</strong> +1 234567890</p>
|
|
<p><strong>Email Address:</strong> <a href="mailto:support@example.com">support@mail.com</a></p>
|
|
<p><strong>Office Address:</strong> 123 Street, City, Country</p>
|
|
<p><strong>Operating Hours:</strong> Monday to Friday, 9 AM to 6 PM</p>
|
|
</div>
|
|
<div class="text-center">
|
|
<a href="homepage.php" class="btn">Go Back to Homepage</a>
|
|
</div>
|
|
</div>
|
|
|
|
</body>
|
|
</html>
|
|
|