#### HTML and CSS Code for Contacting the Team
Here's a simple HTML code with CSS to create a contact form for reaching out to a team:
HTML:
html
Contact the Team
Contact Us
CSS (styles.css):
css
body {
font-family: Arial, sans-serif;
background-color: #f4f4f4;
padding: 20px;
text-align: center;
}
h1 {
color: #333;
}
.form-group {
margin-bottom: 20px;
}
label {
display: block;
margin-bottom: 5px;
color: #666;
}
input[type="text"],
input[type="email"],
textarea {
width: 100%;
padding: 10px;
border: 1px solid #ccc;
border-radius: 5px;
}
button {
padding: 10px 20px;
background-color: #007bff;
color: #fff;
border: none;
border-radius: 5px;
cursor: pointer;
transition: background-color 0.3s;
}
button:hover {
background-color: #0056b3;
}
This code creates a simple contact form with fields for name, email, and message, along with basic styling to make it visually appealing and user-friendly.
Feel free to customize the HTML and CSS to fit your specific needs!