Example output
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Outreach & Link-Building Tool</title>
<style>
body {
font-family: Arial, sans-serif;
margin: 0;
padding: 0;
background-color: #f4f4f4;
}
header {
background-color: #333;
color: white;
padding: 1rem;
text-align: center;
}
nav {
background-color: #444;
color: white;
padding: 1rem;
display: flex;
justify-content: center;
}
nav a {
color: white;
text-decoration: none;
padding: 0 1rem;
}
.container {
padding: 2rem;
}
.section {
margin-bottom: 2rem;
}
table {
width: 100%;
border-collapse: collapse;
margin: 1rem 0;
}
table, th, td {
border: 1px solid #ddd;
}
th, td {
padding: 0.5rem;
text-align: left;
}
th {
background-color: #f4f4f4;
}
button {
background-color: #333;
color: white;
border: none;
padding: 0.5rem 1rem;
cursor: pointer;
}
button:hover {
background-color: #555;
}
</style>
</head>
<body>
<header>
<h1>Outreach & Link-Building Tool</h1>
</header>
<nav>
<a href="#contacts">Contacts</a>
<a href="#outreach">Outreach</a>
<a href="#analytics">Analytics</a>
</nav>
<div class="container">
<section id="contacts" class="section">
<h2>Contact Management</h2>
<button>Add New Contact</button>
<table>
<thead>
<tr>
<th>Name</th>
<th>Email</th>
<th>Phone</th>
<th>Status</th>
<th>Actions</th>
</tr>
</thead>
<tbody>
<!-- Sample row -->
<tr>
<td>John Doe</td>
<td>johndoe@example.com</td>
<td>(123) 456-7890</td>
<td>Active</td>
<td><button>Edit</button> <button>Delete</button></td>
</tr>
</tbody>
</table>
</section>
<section id="outreach" class="section">
<h2>Email Outreach</h2>
<button>Compose New Email</button>
<table>
<thead>
<tr>
<th>Recipient</th>
<th>Subject</th>
<th>Status</th>
<th>Date Sent</th>
</tr>
</thead>
<tbody>
<!-- Sample row -->
<tr>
<td>johndoe@example.com</td>
<td>Partnership Opportunity</td>
<td>Sent</td>
<td>2024-09-01</td>
</tr>
</tbody>
</table>
</section>
<section id="analytics" class="section">
<h2>Analytics</h2>
<p>Metrics and insights will be displayed here.</p>
<!-- Example for static content -->
<table>
<thead>
<tr>
<th>Metric</th>
<th>Value</th>
</tr>
</thead>
<tbody>
<tr>
<td>Total Outreach Emails Sent</td>
<td>10</td>
</tr>
<tr>
<td>Successful Responses</td>
<td>5</td>
</tr>
</tbody>
</table>
</section>
</div>
</body>
</html>