Here's a small HTML code with CSS to provide information about our group:
HTML:
html
Our Group
Welcome to Our Group
Our group is dedicated to fostering creativity and collaboration in a supportive environment. We focus on innovation, teamwork, and continuous learning.
Meet Our Team
John Doe
John is a creative visionary with a passion for problem-solving.
Jane Smith
Jane brings a wealth of experience and leadership to our group.
CSS (styles.css):
css
body {
font-family: Arial, sans-serif;
background-color: #f4f4f4;
color: #333;
text-align: center;
}
h1 {
color: #008080;
}
.team-member {
margin-bottom: 20px;
}
.team-member img {
border-radius: 50%;
width: 150px;
height: 150px;
object-fit: cover;
border: 2px solid #008080;
}
JavaScript (script.js):
javascript
// Interactive functionality can be added here
This code includes basic HTML structure with CSS styling and a reference to a JavaScript file for interactive functionality.