Zephyr-7b-Apr24 / index.html
Taylor658's picture
Update index.html
ac2b07e verified
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Zephyr-7b</title>
<style>
body {
font-family: 'Arial', sans-serif;
margin: 0;
padding: 0;
background: #fff;
}
.header {
background: linear-gradient(to right, #ffec00, #ffcc00); /* Blend color from #ffec00 to #ffcc00 */
padding: 20px;
display: flex; /* Use flexbox to layout the children horizontally */
align-items: center; /* Align children vertically in the center */
justify-content: flex-start; /* Align children to the start (left) */
}
.header img {
width: 125px;
margin-right: 25px; /* Add some space between the image and the following content */
}
.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: #ffcc00;
padding: 20px;
text-align: center;
}
</style>
</head>
<body>
<div class="header">
<!-- Logo image -->
<img src="logo.png" alt="7b-Dec23">
<!-- Rest of the header content goes here -->
</div>
<div class="main">
<iframe src="https://huggingfaceh4-zephyr-chat.hf.space" style="width:100%; height:600px; border:none;"></iframe>
</div>
<div class="footer">
<p>ATaylorAerospace 7b April 2024</p>
</div>
</body>
</html>