Sure, here's a simple HTML code with CSS to display a mission statement:
#### HTML Code:
html
Mission Statement
Our Mission
**To create a sustainable future through innovative solutions and collaborative efforts.**
#### CSS (styles.css):
css
body {
font-family: Arial, sans-serif;
background-color: #f4f4f4;
margin: 0;
padding: 0;
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
}
.mission-container {
text-align: center;
background-color: #fff;
padding: 20px;
border-radius: 8px;
box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
h1 {
color: #007bff;
}
p {
font-size: 18px;
color: #333;
}
#### JavaScript (script.js):
javascript
// Interactive features can be added here
This code creates a simple webpage with a mission statement displayed in a centered container with some basic CSS styling. JavaScript can be added to provide interactive features as needed.