Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
44 changes: 44 additions & 0 deletions contact.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,44 @@
<!DOCTYPE html>
<html lang="en">

<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Contact Us | Healthcare System</title>
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.0-alpha1/dist/css/bootstrap.min.css" rel="stylesheet">
<link rel="stylesheet" href="styles.css">
</head>

<body>
<header class="bg-light py-3 text-center">
<h4 class="header-text">Contact THE PLASMA</h4>
</header>
<div class="container my-5">
<div class="card shadow-lg p-4" style="max-width: 500px; margin: auto;"> <!-- Adjusted width -->
<h2 class="text-center mb-4">Contact Us</h2>
<form action="" method="POST">
<div class="mb-3">
<label for="fullName" class="form-label">Full Name</label>
<input type="text" name="name" class="form-control" id="fullName" placeholder="Enter your full name"
required>
</div>
<div class="mb-3">
<label for="email" class="form-label">Email</label>
<input type="email" name="email" class="form-control" id="email" placeholder="Enter your email"
required>
</div>
<div class="mb-3">
<label for="message" class="form-label">Message</label>
<textarea class="form-control" name="message" id="message" rows="3" placeholder="Your message"
required></textarea>
</div>
<input type="hidden" name="_captcha" value="false">
<input type="hidden" name="_template" value="table">
<button type="submit" class="btn btn-primary w-100">Send Message</button>
</form>
</div>
</div>
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.0-alpha1/dist/js/bootstrap.bundle.min.js"></script>
</body>

</html>
2 changes: 1 addition & 1 deletion index.html
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ <h3>Home</h3>
<h3>About</h3>
<h3>Services</h3>
<h3>Work</h3>
<h3>Contact</h3>
<button onclick="window.location.href='contact.html'">Contact</button>
<button>Get Started for ₹1,000</button>
</div>
</div>
Expand Down
8 changes: 8 additions & 0 deletions styles.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
/* Add this CSS to your styles.css file */
.header-text {
font-weight: bold;
}

.header-text:hover {
color: blue;
}