Skip to content

Commit

Permalink
Merge pull request #8 from AchukwiPeace/patch-9
Browse files Browse the repository at this point in the history
Create Job Analsis
  • Loading branch information
Favourez authored Jun 15, 2024
2 parents cbf864d + 19fde88 commit 9134668
Showing 1 changed file with 60 additions and 0 deletions.
60 changes: 60 additions & 0 deletions Job Analsis
Original file line number Diff line number Diff line change
@@ -0,0 +1,60 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Analytics Dashboard</title>
<style>
body {
font-family: Arial, sans-serif;
background-color: #daa3a3;
margin: 0;
padding: 0;
}

.dashboard {
max-width: 1200px;
margin: 0 auto;
padding: 20px;
background-color: #7dacb1;
border-radius: 5px;
box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.section {
margin-bottom: 20px;
}

.section-title {
font-size: 1.5rem;
margin-bottom: 10px;
}

.chart {
width: 100%;
height: 300px;
background-color: #955f5f;
border-radius: 5px;
}

/* Add more styles for charts, tables, and other elements as needed */
</style>
</head>
<body>
<div class="dashboard">
<div class="section">
<h2 class="section-title">User Behavior</h2>
<div class="chart"></div>
</div>
<div class="section">
<h2 class="section-title">Popular Job Categories</h2>
<div class="chart"></div>
</div>
<div class="section">
<h2 class="section-title">Application Trends</h2>
<div class="chart"></div>
</div>
<!-- Add more sections and charts here -->
</div>
</body>
</html>

0 comments on commit 9134668

Please sign in to comment.