-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathhackathon.html
More file actions
107 lines (97 loc) · 3.48 KB
/
hackathon.html
File metadata and controls
107 lines (97 loc) · 3.48 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>My Portfolio</title>
<link rel="stylesheet" href="styles.css" />
</head>
<body>
<header>
<h1>Halima Kasyoka Komu</h1>
<nav>
<ul>
<li><a href="#about">About</a></li>
<li><a href="#education">Education</a></li>
<li><a href="#skills">Skills</a></li>
<li><a href="#interests">Interests</a></li>
<li><a href="#projects">Projects</a></li>
<li><a href="#contact details">Contact</a></li>
<li><a href="#contact form">Contact me</a></li>
</ul>
</nav>
</header>
<section id="about">
<h2>About Me</h2>
<p>
I'm a passionate developer with a love for clean code and building tools that make a difference. I'm driven by curiosity, collaboration, and the desire to solve meaningful problems through technology.
</p>
</section>
<section id="education">
<h2>Educational Background</h2>
<p><strong>B Tech in Building Construction and Technology</strong> – Technical University of Kenya,2024</p>
<a href="HALIMA KASYOKA Cv.docx" download>Download My CV</a>
</section>
<section id="skills">
<h2>Programming Languages</h2>
<ul>
<li>HTML</li>
<li>CSS</li>
<li>JavaScript</li>
<li>Python</li>
<li>Java</li>
</ul>
</section>
<section id="interests">
<h2>Interests</h2>
<ul>
<li>
<strong>Technology:</strong> I'm fascinated by how tech shapes the future—especially innovations in software, AI, and smart systems.
</li>
<li>
<strong>Reading Novels:</strong> I enjoy reading fiction and literature, which expands my imagination and helps me think creatively.
</li>
<li>
<strong>Construction:</strong> I have a strong interest in how things are built—from architectural design to real-world project execution.
</li>
</ul>
</section>
<section id="projects">
<h2>Projects</h2>
<ul>
<li>
<strong><a href="https://github.com/Halima-24/Trial-Repo/project1">Project One</a></strong>: Git and Githud basics.
</li>
<li>
<strong><a href="https://github.com/Halima-24/SEE-Academy/project2">Project Two</a></strong>: A Python program that performs basic arithmetic operations on two numbers.
</li>
<li>
<strong><a href="https://github.com/Halima-24/Web-Development/project3">Project Three</a></strong>: An responsive website built using HTML and CSS.
</li>
</ul>
</section>
<section id="contact details">
<h2>My Contact Details</h2>
<ul>
<li><strong>Name:</strong> Halima Kasyoka</li>
<li><strong>Email:</strong> halimakasyoka@gmail.com</li>
<li><strong>Phone:</strong> +254794705641</li>
</ul>
</section>
<section id="contact form">
<h2> Contact Form</h2>
<form action="https://formspree.io/f/yourformid" method="POST">
<label for="name">Name:</label>
<input type="text" name="name" required />
<label for="email">Email:</label>
<input type="email" name="email" required />
<label for="message">Message:</label>
<textarea name="message" rows="3" required></textarea>
<button type="submit">Send</button>
</form>
</section>
<footer>
<p>© 2025 Halima Kasyoka Komu</p>
</footer>
</body>
</html>