How to Create a Code-Sharing Box with Syntax Highlighting and Language Labels
This implementation works with WordPress or any PHP-based CMS. For static sites, convert the PHP shortcode to direct HTML markup.
This code creates a user-friendly contact form with HTML. CSS styles the form for a clean, modern aesthetic. It includes fields for name, email, subject, and message. The form is designed for easy data collection and submission.
Dive into the world of web development with our in-depth guides and tutorials. Whether you're a beginner taking your first steps or a seasoned developer seeking to refine your skills, this blog is your go-to resource. We break down complex concepts into digestible pieces, covering everything from HTML and CSS fundamentals to advanced JavaScript frameworks and backend integrations. Explore practical examples, discover best practices, and stay updated with the latest industry trends. Learn to build responsive, beautiful, and functional websites and web applications. We also explore topics like UI/UX design, performance optimization, and accessibility, ensuring you create exceptional user experiences. Join our community and elevate your web development journey.
Alright, let's build a beautiful and functional contact form using HTML, and we'll add some CSS to make it visually appealing. We'll focus on clean design and user-friendliness.
HTML (index.html):
<!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="style.css">
</head>
<body>
<div class="container">
<h1>Get in Touch</h1>
<p>Please fill out the form below to contact us.</p>
<form action="#" 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="subject">Subject:</label>
<input type="text" id="subject" name="subject">
</div>
<div class="form-group">
<label for="message">Message:</label>
<textarea id="message" name="message" rows="5" required></textarea>
</div>
<button type="submit">Submit</button>
</form>
</div>
</body>
</html>
CSS (style.css):
body {
font-family: sans-serif;
display: flex;
justify-content: center;
align-items: center;
min-height: 100vh;
margin: 0;
background-color: #f4f4f4;
}
. .container {
background-color: #fff;
padding: 40px;
border-radius: 8px;
box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
width: 400px;
}
h1 {
text-align: center;
margin-bottom: 20px;
color: #333;
}
p {
text-align: center;
margin-bottom: 30px;
color: #666;
}
.form-group {
margin-bottom: 20px;
}
label {
display: block;
margin-bottom: 8px;
color: #333;
}
input[type="text"],
input[type="email"],
textarea {
width: 100%;
padding: 10px;
border: 1px solid #ddd;
border-radius: 4px;
box-sizing: border-box;
font-size: 16px;
}
textarea {
resize: vertical;
}
button[type="submit"] {
background-color: #007bff;
color: white;
padding: 12px 20px;
border: none;
border-radius: 4px;
cursor: pointer;
font-size: 16px;
width: 100%;
}
button[type="submit"]:hover {
background-color: #0056b3;
}
div
container to hold the form.label
elements for clear field descriptions.input
elements are used for text and email input.textarea
is used for the message.required
attribute ensures that users fill in essential fields.How to Use:
index.html
.style.css
in the same directory as the HTML file.index.html
in your web browser.Enhancements:
This basic contact form provides a solid foundation. You can customize the CSS to match your website's design and add more advanced features as needed.
This implementation works with WordPress or any PHP-based CMS. For static sites, convert the PHP shortcode to direct HTML markup.
Learn how to protect your online privacy in 2024 with these essential best practices, from strong passwords to VPNs and safe browsing habits.
Discover how to speed up your slow computer with our comprehensive step-by-step guide. Improve performance, increase speed, and enhance your PC's efficiency.