-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathportifolio.html
More file actions
342 lines (309 loc) · 11.5 KB
/
portifolio.html
File metadata and controls
342 lines (309 loc) · 11.5 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
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Dennis Obare|Software Developer</title>
<style>
body {
background-color: white;
display: flex;
flex-direction: column;
justify-content: center;
min-height: 100vh;
margin: 0;
font-family: Arial, sans-serif;
}
header {
background-color:brown;
color:white;
display: flex;
justify-content: space-between;
align-items: center;
padding: 20px;
}
header h1 {
margin: 0;
font-size: 24;
}
header nav ul {
list-style-type: none;
margin: 0;
padding: 0;
display: flex;
gap: 20px;
}
header nav ul li {
margin: 0;
}
header nav ul li a {
text-decoration: none;
color: white;
font-size: 18px;
padding: 10px;
transition: color 0.3s, background-color 0.3s;
}
header nav ul li a:hover {
color: #333;
background-color: #fff;
border-radius: 5px;
}
/* Responsive design */
@media (max-width: 768px) {
header {
flex-direction: column;
align-items: flex-start;
}
header nav ul {
flex-direction: column;
width: 100%;
}
header nav ul li {
width: 100%;
}
header nav ul li a {
display: block;
width: 100%;
text-align: center;
}
.card-list {
flex-direction: column;
align-items: center;
}
.card-list li {
width: 90%;
}
.section-main {
padding: 15px;
margin: 10px, 0;
}
.section-container {
padding: 15px;
margin: 10px, 0;
}
.section-container h2 {
font-size: 22px;
}
.section-container p {
font-size: 14px;
}
.footer-container {
padding: 15px;
text-align: center;
}
.footer-nav ul {
flex-direction: column;
gap: 10px;
}
.footer-nav ul li {
margin: 5px, 0;
}
}
.section-main {
padding: 20px;
}
.section-container {
display: flex;
flex-direction: column;
flex-wrap: wrap;
justify-content: center;
align-items: center;
width: 100%;
height: auto;
margin: 0;
padding: 5px;
border: 1px #ccc;
border-radius: 8px;
gap: 20px;
text-align: center;
}
.section-container h2 {
color: brown;
font-size: 24px;
margin-bottom: 10px;
}
.section-container p {
font-size: 20px;
line-height: 1.6;
color: #666;
}
.section-container p a {
color: blue;
text-decoration: none;
}
.card-list {
list-style-type: none;
margin: 0;
padding: 0;
display: flex;
gap: 20px;
justify-content: center;
}
.card-list li {
background-color: white;
border: 1px solid #e0e0e0;
border-radius: 8px;
display: flex;
flex-direction: column;
justify-content: space-between;
padding: 20px;
width: 250px;
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}
.card-list li:hover {
transform: translateY(-5px);
box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}
.card-list li h4 {
font-size: 20px;
color: brown;
margin-bottom: 10px;
}
.card-list li p {
flex-grow: 1;
margin-bottom: 10px;
}
.card-list li p a {
margin-top: auto;
text-decoration: none;
color: blue;
transition: color 0.3s ease;
}
.card-list li p a:hover {
color: #0056b3
}
.footer-container {
background-color: brown;
color: white;
padding: 20px;
text-align: center;
}
.footer-content {
max-width: 1200px;
margin: 0, auto;
}
.footer-nav ul {
list-style-type: none;
padding: 0;
margin: 10px, 0;
display: flex;
justify-content: center;
gap: 15px;
}
.footer-nav ul li a {
color: #fff;
text-decoration: none;
transition: color 0.3s ease
}
.footer-nav ul li a:hover {
color: #f5a623;
}
</style>
</head>
<body>
<header>
<div class="header-left">
<h1>Dennis Obare|Software Developer</h1>
</div>
<div class="header-right">
<nav class="nav">
<ul>
<li><a href="#about">About</a></li>
<li><a href="#skills">Skills</a></li>
<li><a href="#projects">Projects</a></li>
<li><a href="#hobbies">Hobbies</a></li>
<li><a href="#connect">Connect</a></li>
</ul>
</nav>
</div>
</header>
<main>
<section class="section-main" id="about">
<div class="section-container">
<h2>About Me</h2>
<div class="about-text">
<p>Hi there! I'm Dennis Obare, a passionate and driven full-stack developer with over five years of experience in building dynamic, user-friendly web applications. My journey in the world of coding started during my college years, and since then, I have honed my skills in both front-end and back-end development.</p>
</div>
</div>
</section>
<section class="section-main" id="skills">
<div class="section-container">
<h2>My Expertise</h2>
<ul class="card-list">
<li>
<h4>Frontend</h4>
<p>HTML, CSS, JavaScript, React, Angular</p>
</li>
<li>
<h4>Backend</h4>
<p>Node.js, Express, Ruby on Rails</p>
</li>
<li>
<h4>Databases</h4>
<p>MongoDB, MySQL, PostgreSQL</p>
</li>
<li>
<h4>DevOps</h4>
<p>Docker, Kubernetes, AWS, CI/CD</p>
</li>
</ul>
</div>
</section>
<section class="section-main" id="projects">
<div class="section-container">
<h2>My Projects</h2>
<ul class="card-list">
<li class="card">
<h4>E-Commerce Platform</h4>
<p>Developed a scalable e-commerce platform that supports thousands of concurrent users, featuring advanced search functionality, secure payment integration, and real-time order tracking.<br><a href="https://google.com">View Demo</a></p>
</li>
<li class="card">
<h4>Instagram Clone</h4>
<p>Built a social media application that allows users to create profiles, post updates, and interact with others in real time.<br><a href="https://google.com">View Demo</a></p>
</li>
<li class="card">
<h4>Project Management Tool</h4>
<p>Developed a comprehensive project management tool to help teams track progress, manage tasks, and collaborate efficiently.<br><a href="https://google.com">View Demo</a></p>
</li>
<li class="card">
<h4>Personal Blog</h4>
<p>Designed and developed a personal blog to share technical articles, tutorials, and project updates.<br><a href="https://google.com">View Demo</a></p>
</li>
</ul>
</div>
</section>
<section class="section-main">
<div class="section-container">
<h2>My Philosophy</h2>
<p>I believe in writing clean, well-documented code that not only works but is easy to understand and maintain. Continuous learning is at the core of my professional philosophy, and I am always eager to adopt new technologies and best practices. I am a firm advocate of open-source and actively contribute to several projects on GitHub.</p>
</div>
</section>
<section class="section-main" id="hobbies">
<div class="section-container">
<h2>Beyond Coding</h2>
<p>When I'm not coding, you can find me exploring the great outdoors, experimenting with new recipes in the kitchen, or attending tech meetups and conferences to stay connected with the developer community.</p>
</div>
</section>
<section class="section-main" id="connect">
<div class="section-container">
<h2>Let's Connect</h2>
<p>I am currently open to new opportunities and collaborations. If you have a project in mind or just want to chat about the latest in tech, feel free to reach out to me through <a href="https://google.com">LinkedIn</a>, <a href="https://google.com">Github</a> or <a href="https://google.com">Email</a>.</p>
</div>
</section>
</div>
</main>
<footer class="footer-container">
<div class="footer-content">
<p>© 2024 Dennis Obare. All Rights Reserved.</p>
<nav class="footer-nav">
<ul>
<li><a href="#home">Home</a></li>
<li><a href="#about">About</a></li>
<li><a href="#projects">Projects</a></li>
<li><a href="#contact">Contact</a></li>
</ul>
</nav>
</div>
</footer>
</body>
</html>