Spaces:
Running
Running
<html lang="en"> | |
<head> | |
<meta charset="UTF-8"> | |
<meta name="viewport" content="width=device-width, initial-scale=1.0"> | |
<title>Mistral AI</title> | |
<style> | |
body { | |
font-family: 'Arial', sans-serif; | |
margin: 0; | |
padding: 0; | |
background: #fff; | |
} | |
.header { | |
background: #ffcc00; | |
padding: 20px; | |
text-align: center; | |
} | |
.header img { | |
width: 150px; | |
} | |
.nav { | |
background: #333; | |
color: #fff; | |
padding: 10px; | |
text-align: right; | |
} | |
.nav a { | |
color: #fff; | |
margin: 0 10px; | |
text-decoration: none; | |
} | |
.main { | |
padding: 20px; | |
text-align: center; | |
} | |
.footer { | |
background: #333; | |
color: #fff; | |
padding: 20px; | |
text-align: center; | |
} | |
</style> | |
</head> | |
<body> | |
<div class="header"> | |
<!-- Logo image --> | |
<img src="logo.png" alt="Mistral AI Logo"> | |
</div> | |
<div class="nav"> | |
<a href="#">Developers</a> | |
<a href="#">Product</a> | |
<a href="#">Company</a> | |
<a href="#">News</a> | |
<a href="#" style="background: #ffcc00; padding: 5px 10px;">Contact Us</a> | |
</div> | |
<div class="main"> | |
<h1>Pushing AI forward</h1> | |
<p>We tackle the hardest problems to make AI models compute efficient, helpful and trustworthy.</p> | |
<p>Open & white-box</p> | |
<p>We spearhead the family of open models. We give to our users and empower them to contribute their ideas.</p> | |
<p>In your hands</p> | |
<p>Our products come with weights and sources, permitting full customisation. We don't want your data!</p> | |
<h2>Committing to open models.</h2> | |
<p>We believe in open science, community and free software. We release many of our models and deployment tools under permissive licenses. We benefit from the OSS community, and give back.</p> | |
</div> | |
<div class="footer"> | |
<p>Mistral 7B is here!</p> | |
</div> | |
</body> | |
</html> | |