-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
67 lines (67 loc) · 2.06 KB
/
index.html
File metadata and controls
67 lines (67 loc) · 2.06 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0"/>
<title>Solape Olojede | Portfolio</title>
<style>
body {
font-family: Arial, sans-serif;
margin: 0;
padding: 0;
background-color: #f7f7f7;
color: #333;
}
header {
background-color: #333;
color: white;
padding: 20px;
text-align: center;
}
main {
padding: 20px;
}
.project {
background-color: white;
margin-bottom: 20px;
padding: 15px;
border-radius: 8px;
box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}
.project a {
text-decoration: none;
color: #1a0dab;
}
footer {
background-color: #eee;
text-align: center;
padding: 10px;
font-size: 14px;
}
</style>
</head>
<body>
<header>
<h1>Solape Olojede</h1>
<p>Data/Business Analyst | Portfolio Projects</p>
</header>
<main>
<section class="project">
<h2>📊 Customer Sales Analysis</h2>
<p>Analyzed customer sales data using Excel and Power BI to uncover trends, product performance, and regional insights.</p>
<p><a href="https://github.com/Lapemye/customer-sales-analysis" target="_blank">View Project on GitHub</a></p>
</section>
<section class="project">
<h2>📊 Grocery Sales Dashboard</h2>
<p>Built an interactive Excel dashboard analyzing 5 years of grocery sales data using Pivot Tables, Slicers, and Charts. Includes dynamic filtering by year, category, and state.</p>
<p>
<a href="https://github.com/Lapemye/Lapemye.github.io/blob/main/Grocery_Sales_Cleaned.xlsx" target="_blank">Download Excel Dashboard</a> |
<a href="https://github.com/Lapemye/Lapemye.github.io" target="_blank">View Project on GitHub</a>
</p>
</section>
</main>
<footer>
© 2025 Solape Olojede | <a href="https://www.linkedin.com/in/your-profile" target="_blank">LinkedIn</a>
</footer>
</body>
</html>