mirror of
https://github.com/Hizenberg469/BPIT-ATTENDANCE.git
synced 2026-04-20 02:02:25 +03:00
initial commit
This commit is contained in:
40
nakul/home/contact.html
Normal file
40
nakul/home/contact.html
Normal file
@@ -0,0 +1,40 @@
|
||||
<!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>
|
||||
<link rel="stylesheet" href="styles.css">
|
||||
</head>
|
||||
<body>
|
||||
<header>
|
||||
<h1>Contact Us</h1>
|
||||
<nav>
|
||||
<a href="index.html">Home</a>
|
||||
<a href="about.html">About</a>
|
||||
<a href="services.html">Services</a>
|
||||
<a href="login.html">Login</a>
|
||||
<a href="signup.html">Sign Up</a>
|
||||
</nav>
|
||||
</header>
|
||||
|
||||
<main>
|
||||
<section>
|
||||
<h2>Send Us a Message</h2>
|
||||
<form action="#" method="POST">
|
||||
<label for="name">Your Name:</label>
|
||||
<input type="text" id="name" name="name" required><br>
|
||||
<label for="email">Your Email:</label>
|
||||
<input type="email" id="email" name="email" required><br>
|
||||
<label for="message">Message:</label><br>
|
||||
<textarea id="message" name="message" rows="4" required></textarea><br>
|
||||
<button type="submit">Send Message</button>
|
||||
</form>
|
||||
</section>
|
||||
</main>
|
||||
|
||||
<footer>
|
||||
<p>© 2024 Your Company</p>
|
||||
</footer>
|
||||
</body>
|
||||
</html>
|
||||
Reference in New Issue
Block a user