-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
117 lines (111 loc) · 5.06 KB
/
Copy pathindex.html
File metadata and controls
117 lines (111 loc) · 5.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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Your Name | Data Analyst</title>
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.0/dist/css/bootstrap.min.css" rel="stylesheet">
<link rel="stylesheet" href="styles.css">
</head>
<body>
<header class="bg-primary text-white text-center py-5">
<div class="container">
<h1 class="display-4">Your Name</h1>
<p class="lead">Data Analyst</p>
<nav>
<ul class="nav justify-content-center">
<li class="nav-item"><a class="nav-link text-white" href="#about">About</a></li>
<li class="nav-item"><a class="nav-link text-white" href="#skills">Skills</a></li>
<li class="nav-item"><a class="nav-link text-white" href="#projects">Projects</a></li>
<li class="nav-item"><a class="nav-link text-white" href="#contact">Contact</a></li>
</ul>
</nav>
</div>
</header>
<section id="about" class="py-5">
<div class="container">
<h2 class="text-center mb-4">About Me</h2>
<div class="row justify-content-center">
<div class="col-lg-8">
<p class="text-center">
I'm a data analyst with a passion for uncovering insights and trends that drive business decisions. With experience in data cleaning, visualization, and statistical analysis, I bring data to life through compelling narratives.
</p>
</div>
</div>
</div>
</section>
<section id="skills" class="bg-light py-5">
<div class="container">
<h2 class="text-center mb-4">Skills</h2>
<div class="row text-center">
<div class="col-md-4">
<h4>Data Cleaning & Preprocessing</h4>
</div>
<div class="col-md-4">
<h4>Data Visualization</h4>
<p>(Tableau, Power BI, Matplotlib)</p>
</div>
<div class="col-md-4">
<h4>Statistical Analysis</h4>
</div>
<div class="col-md-4">
<h4>SQL & Database Management</h4>
</div>
<div class="col-md-4">
<h4>Python & R Programming</h4>
</div>
<div class="col-md-4">
<h4>Machine Learning</h4>
</div>
</div>
</div>
</section>
<section id="projects" class="py-5">
<div class="container">
<h2 class="text-center mb-4">Projects</h2>
<div class="row">
<div class="col-md-6 mb-4">
<div class="card">
<div class="card-body">
<h3 class="card-title">Project Title 1</h3>
<p class="card-text">Description of the project, including the problem, solution, and tools/technologies used.</p>
<a href="link-to-project" class="btn btn-primary" target="_blank">View Project</a>
</div>
</div>
</div>
<div class="col-md-6 mb-4">
<div class="card">
<div class="card-body">
<h3 class="card-title">Project Title 2</h3>
<p class="card-text">Description of the project, including the problem, solution, and tools/technologies used.</p>
<a href="link-to-project" class="btn btn-primary" target="_blank">View Project</a>
</div>
</div>
</div>
<!-- Add more project cards as needed -->
</div>
</div>
</section>
<section id="contact" class="bg-light py-5">
<div class="container">
<h2 class="text-center mb-4">Contact</h2>
<p class="text-center mb-4">If you'd like to get in touch, feel free to reach out via the following:</p>
<div class="row justify-content-center">
<div class="col-md-6 text-center">
<ul class="list-unstyled">
<li>Email: <a href="mailto:your.email@example.com">your.email@example.com</a></li>
<li>LinkedIn: <a href="https://www.linkedin.com/in/your-linkedin" target="_blank">your-linkedin</a></li>
<li>GitHub: <a href="https://github.com/your-github" target="_blank">your-github</a></li>
</ul>
</div>
</div>
</div>
</section>
<footer class="bg-primary text-white text-center py-4">
<div class="container">
<p>© 2024 Your Name. All rights reserved.</p>
</div>
</footer>
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.0/dist/js/bootstrap.bundle.min.js"></script>
</body>
</html>