Example output
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Email Marketing Tool</title>
<style>
body {
font-family: Arial, sans-serif;
margin: 0;
padding: 0;
background-color: #f4f4f4;
}
.container {
width: 80%;
margin: auto;
overflow: hidden;
}
header {
background: #333;
color: #fff;
padding: 10px 0;
text-align: center;
}
.main {
padding: 20px;
background: #fff;
margin-top: 20px;
border-radius: 5px;
}
.section {
margin-bottom: 20px;
}
h1, h2 {
color: #333;
}
.button {
background: #5cb85c;
color: #fff;
padding: 10px 20px;
border: none;
border-radius: 5px;
cursor: pointer;
text-decoration: none;
}
.button:hover {
background: #4cae4c;
}
.form-group {
margin-bottom: 15px;
}
.form-group label {
display: block;
margin-bottom: 5px;
}
.form-group input, .form-group textarea {
width: 100%;
padding: 10px;
border: 1px solid #ccc;
border-radius: 5px;
}
</style>
</head>
<body>
<header>
<h1>Email Marketing Tool</h1>
</header>
<div class="container">
<div class="main">
<div class="section">
<h2>Design Email Templates</h2>
<form>
<div class="form-group">
<label for="templateName">Template Name</label>
<input type="text" id="templateName" name="templateName">
</div>
<div class="form-group">
<label for="templateContent">Template Content</label>
<textarea id="templateContent" name="templateContent" rows="6"></textarea>
</div>
<button type="submit" class="button">Save Template</button>
</form>
</div>
<div class="section">
<h2>Audience Segmentation</h2>
<form>
<div class="form-group">
<label for="segmentName">Segment Name</label>
<input type="text" id="segmentName" name="segmentName">
</div>
<div class="form-group">
<label for="criteria">Criteria</label>
<textarea id="criteria" name="criteria" rows="6"></textarea>
</div>
<button type="submit" class="button">Create Segment</button>
</form>
</div>
<div class="section">
<h2>Automate Follow-Ups</h2>
<form>
<div class="form-group">
<label for="workflowName">Workflow Name</label>
<input type="text" id="workflowName" name="workflowName">
</div>
<div class="form-group">
<label for="triggerEvent">Trigger Event</label>
<input type="text" id="triggerEvent" name="triggerEvent">
</div>
<button type="submit" class="button">Save Workflow</button>
</form>
</div>
<div class="section">
<h2>CRM Integration</h2>
<form>
<div class="form-group">
<label for="crmName">CRM Name</label>
<input type="text" id="crmName" name="crmName">
</div>
<div class="form-group">
<label for="crmDetails">CRM Details</label>
<textarea id="crmDetails" name="crmDetails" rows="6"></textarea>
</div>
<button type="submit" class="button">Integrate CRM</button>
</form>
</div>
<div class="section">
<h2>Analytics</h2>
<p>Analytics section would be displayed here.</p>
</div>
</div>
</div>
</body>
</html>