|
<!DOCTYPE html> |
|
<html lang="en"> |
|
|
|
<head> |
|
<meta charset="UTF-8"> |
|
<meta name="viewport" content="width=device-width, initial-scale=1.0"> |
|
<title>AI Mission</title> |
|
<style> |
|
body { |
|
font-family: 'Arial', sans-serif; |
|
background-color: #f4f4f4; |
|
color: #333; |
|
margin: 0; |
|
padding: 0; |
|
display: flex; |
|
justify-content: center; |
|
align-items: center; |
|
min-height: 100vh; |
|
} |
|
|
|
.container { |
|
text-align: center; |
|
max-width: 600px; |
|
} |
|
|
|
h1 { |
|
color: #007BFF; |
|
} |
|
|
|
p { |
|
font-size: 1.1em; |
|
line-height: 1.6; |
|
} |
|
</style> |
|
</head> |
|
|
|
<body> |
|
|
|
<div class="container"> |
|
<h1>Our Mission</h1> |
|
<p>We aim to create powerful, open-source AI models that excel in every task while remaining small-sized and efficient.</p> |
|
<p>Our goal is to make advanced AI technology accessible to more people, even on consumer-level hardware.</p> |
|
<p>Join us in this mission to democratize AI. Together, we can unlock the potential of AI for all.</p> |
|
</div> |
|
|
|
</body> |
|
|
|
</html> |
|
|