Example output
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Content Research Tool</title>
<style>
body {
font-family: Arial, sans-serif;
margin: 0;
padding: 0;
background-color: #f4f4f4;
}
.container {
width: 80%;
margin: 0 auto;
}
header {
background: #333;
color: #fff;
padding: 10px 0;
text-align: center;
}
.dashboard {
background: #fff;
padding: 20px;
border-radius: 5px;
box-shadow: 0 0 10px rgba(0,0,0,0.1);
margin-top: 20px;
}
.filters, .reports {
margin-bottom: 20px;
}
.filters select, .reports select {
width: 100%;
padding: 10px;
margin: 5px 0;
}
.content-list {
list-style: none;
padding: 0;
}
.content-list li {
background: #e9e9e9;
margin: 5px 0;
padding: 10px;
border-radius: 5px;
}
footer {
background: #333;
color: #fff;
text-align: center;
padding: 10px 0;
position: fixed;
width: 100%;
bottom: 0;
}
</style>
</head>
<body>
<header>
<h1>Content Research Tool</h1>
</header>
<div class="container">
<div class="dashboard">
<div class="filters">
<h2>Filters</h2>
<select id="industry-filter">
<option value="">Select Industry</option>
<option value="tech">Technology</option>
<option value="health">Health</option>
<option value="finance">Finance</option>
<!-- Add more options as needed -->
</select>
<select id="time-filter">
<option value="">Select Time Range</option>
<option value="daily">Daily</option>
<option value="weekly">Weekly</option>
<option value="monthly">Monthly</option>
</select>
</div>
<div class="reports">
<h2>Reports</h2>
<select id="report-type">
<option value="">Select Report Type</option>
<option value="top-articles">Top Performing Articles</option>
<option value="top-influencers">Top Influencers</option>
<option value="performance-overview">Performance Overview</option>
</select>
<button onclick="generateReport()">Generate Report</button>
</div>
<div class="content">
<h2>Content Overview</h2>
<ul class="content-list">
<li>
<h3>Article Title 1</h3>
<p>Details about this article.</p>
</li>
<li>
<h3>Article Title 2</h3>
<p>Details about this article.</p>
</li>
<!-- Add more articles as needed -->
</ul>
</div>
</div>
</div>
<footer>
<p>© 2024 Content Research Tool. All rights reserved.</p>
</footer>
<script>
function generateReport() {
// Placeholder for report generation functionality
alert('Report generation functionality is not implemented in this static HTML example.');
}
</script>
</body>
</html>