-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
79 lines (74 loc) · 2.66 KB
/
index.html
File metadata and controls
79 lines (74 loc) · 2.66 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0"
<title>KELVIN WAWERU</title>
</head>
<link rel="stylesheet" href="style.css">
<section>
<h2>About Me</h2>
<p>
I'm a finance professional with a strong background in portfolio managent, now transitioning into the exciting world of tech. I'm passionate about using my analytical skills to solve problems and I'm currently learning to code.
</p>
</section>
<section>
<h2>Academic Skills</h2>
<ul>
<li>
<h3> Power Learn Project</h3>
<p>Software Development,2025-</p>
</li>
<li>
<h3>ALX Academy</h3>
<p>AI Career Essentials,2024.</p>
</li>
<li>
<h3>Nairobi Institute of Business Studies</h3>
<p>Diploma in Business Adminstration,2013.</p>
</li>
</ul>
<h3>Download My CV</h3>
<a href="your_cv.pdf" download>Download CV</a>
</section>
<section>
<h2>Projects</h2>
<h3>Kuuza Mama</h3>
<p>This project involved teaching widows in rural Kenya, simple budgeting habits and basic financial literacy</p>
<h3>Personal portfolio</h3>
<p>This project is the first assigned Hackathon Project during my time at PLP. I put it here but it will soon be joined by other projects. </p>
<a href="https://github.com/Padawan33/Portfolio.git" target="_blank">View on GitHub</a>
</section>
<Section>
<h2>Programming Languages</h2>
<ul>
<li>HTML</li>
<li>CSS</li>
<li>Python</li>
</ul>
</Section>
<section>
<h2>Interests</h2>
<p>
Technology and creativity: I enjoy building things that are not only functional but also visually appealing.
</p>
<p> Traveling in Kenya: My country is beautiful and I'm yet to see half of it
</p>
<P>
Reading Scientific literature: Seeing Human Ingenuity grow from science fiction to reality.
</P>
</section>
<section>
<h2>Contact Me</h2>
<form>
<label for="name">Name:</label>
<input type="text" id="name" name="name" required>
<label for="email">Email:</label>
<input type="email" id="email" name="email" required>
<label for="message">Message</label>
<textarea id="message" name="message" required></textarea>
<button type="submit">Send</button>
</form>
</section>
</body>
</html>