-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #8 from AchukwiPeace/patch-9
Create Job Analsis
- Loading branch information
Showing
1 changed file
with
60 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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> |