Skip to content

Commit

Permalink
Create contact.html
Browse files Browse the repository at this point in the history
  • Loading branch information
lasalasa committed Jun 11, 2024
1 parent b4349d2 commit 80fe236
Showing 1 changed file with 63 additions and 0 deletions.
63 changes: 63 additions & 0 deletions contact.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,63 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Contact Us - CodeCanvas Collective</title>
<link rel="stylesheet" href="styles.css">
<link href="https://fonts.googleapis.com/css2?family=Roboto:wght@400;700&display=swap" rel="stylesheet">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.3/css/all.min.css">
</head>
<body>
<header>
<div class="container">
<h1>CodeCanvas Collective</h1>
<nav>
<ul>
<li><a href="index.html#home">Home</a></li>
<li><a href="index.html#about">About</a></li>
<li><a href="index.html#tips">Programming Tips</a></li>
<li><a href="contact.html">Contact</a></li>
</ul>
</nav>
</div>
</header>
<section class="hero" id="contact-hero">
<div class="container">
<h2>Contact Us</h2>
<p>We would love to hear from you! Whether you have a question, feedback, or need assistance, feel free to reach out to us.</p>
</div>
</section>
<main class="container">
<section id="contact">
<h2>Get in Touch</h2>
<form action="https://example.com/form-handler" method="POST">
<div class="form-group">
<label for="name">Name</label>
<input type="text" id="name" name="name" required>
</div>
<div class="form-group">
<label for="email">Email</label>
<input type="email" id="email" name="email" required>
</div>
<div class="form-group">
<label for="message">Message</label>
<textarea id="message" name="message" rows="5" required></textarea>
</div>
<button type="submit" class="btn">Send Message</button>
</form>
</section>
</main>
<footer>
<div class="container">
<div class="social-media">
<a href="https://www.facebook.com" target="_blank"><i class="fab fa-facebook-f"></i></a>
<a href="https://www.instagram.com" target="_blank"><i class="fab fa-instagram"></i></a>
<a href="https://www.youtube.com" target="_blank"><i class="fab fa-youtube"></i></a>
<a href="https://github.com" target="_blank"><i class="fab fa-github"></i></a>
</div>
<p>&copy; 2024 CodeCanvas Collective. All rights reserved.</p>
</div>
</footer>
</body>
</html>

0 comments on commit 80fe236

Please sign in to comment.