imageToCode / index.html
pushpendra.parmar
Initial commit
71ed633
raw
history blame
3.02 kB
```html
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Growform</title>
<style>
body {
font-family: sans-serif;
margin: 0;
padding: 0;
background-color: #f8f9fa;
}
.container {
max-width: 600px;
margin: 50px auto;
background-color: #fff;
padding: 30px;
border-radius: 8px;
box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}
.logo {
display: flex;
align-items: center;
margin-bottom: 20px;
}
.logo img {
width: 32px;
height: 32px;
margin-right: 10px;
}
.logo span {
font-weight: bold;
font-size: 1.2rem;
color: #343a40;
}
.khoros-logo {
text-align: center;
margin-bottom: 20px;
}
.khoros-logo img {
height: 30px;
}
.khoros-logo span {
font-size: 24px;
color: #2862d6;
font-weight: bold;
}
.progress-bar {
display: flex;
justify-content: space-around;
margin-bottom: 20px;
}
.progress-bar circle {
width: 30px;
height: 30px;
border-radius: 50%;
border: 1px solid #ced4da;
display: flex;
justify-content: center;
align-items: center;
font-size: 14px;
color: #343a40;
background-color: #fff;
}
.progress-bar line {
height: 1px;
background-color: #ced4da;
}
.progress-bar circle.active {
background-color: #e94590;
color: #fff;
border: none;
}
label {
display: block;
margin-bottom: 5px;
font-size: 14px;
color: #343a40;
}
input[type="email"] {
width: 100%;
padding: 10px;
border: 1px solid #ced4da;
border-radius: 4px;
font-size: 16px;
margin-bottom: 20px;
}
.button {
width: 100%;
background-color: #e94590;
color: #fff;
padding: 12px 20px;
border: none;
border-radius: 4px;
font-size: 16px;
cursor: pointer;
}
.footer {
text-align: center;
margin-top: 30px;
font-size: 12px;
color: #868e96;
}
.footer a {
color: #868e96;
text-decoration: none;
margin: 0 5px;
}
</style>
</head>
<body>
<div class="container">
<div class="logo">
<img src="growform-logo.svg" alt="Growform Logo">
<span>Growform</span>
</div>
<div class="khoros-logo">
<img src="khoros-logo.svg" alt="Khoros Logo">
<span>Khoros</span>
</div>
<p style="text-align:center;margin-bottom:20px;font-size:16px;color:#343a40;">Are you ready for a demo?</p>
<div class="progress-bar">
<div class="circle active">1</div>
<div style="width: 25%;"></div>
<div class="circle">2</div>
<div style="width: 25%;"></div>
<div class="circle">3</div>
</div>
<p style="text-align: center; font-size: 16px; color: #343a40; margin-bottom: 20px;">Let's get started.</p>
<label for="work-email" style="margin-left: 5px;">Work email:</label>
<input type="email" id="work-email" style="margin-left:5px;">
<button class="button" style="margin-left:5px;">NEXT</button>
<div class="footer">
© Khoros, LLC | <a href="#">Privacy</a> | <a href="#">Security</a> | <a href="#">Disclaimer</a> | <a href="#">Legal & Compliance</a> | <a href="#">Terms of Use</a>
</div>
</div>
</body>
</html>
```