-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathabout.html
127 lines (115 loc) · 5.14 KB
/
about.html
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>My Personal Homepage</title>
<link rel="stylesheet" href="/style.css" />
</head>
<body>
<header class="c-site-header">
<h1 class="c-site-header__title">Fathi Kahin</h1>
<p class="c-site-header__subtitle">(Upcoming Software Developer)</p>
</header>
<nav aria-label="Main Site Links" class="c-site-nav">
<a href="index.html" class="c-site-nav__link">Home</a>
<a href="about.html" class="c-site-nav__link">About</a>
<a href="projects.html" class="c-site-nav__link">My projects</a>
<a href="contact.html" class="c-site-nav__link">Contact</a>
</nav>
<main>
<style>
body {
font-family: Arial, sans-serif;
text-align: center;
padding: 50px;
}
h1, h2, h3 {
margin-bottom: 10px;
}
ul {
list-style-type: none;
padding: 0;
margin-bottom: 20px;
}
li {
margin-bottom: 5px;
}
a {
color: #333;
text-decoration: none;
}
a:hover {
text-decoration: underline;
}
</style>
</head>
<body>
<h2>Full Stack Web Developer</h2>
<h3>Summary</h3>
<p>Experienced Software Developer with expertise in full-stack technologies like HTML, CSS, JavaScript, React, Node.js, and PostgreSQL. Currently enrolled in the CodeYourFuture Full Stack Bootcamp, honing skills in building MVP products using Agile methodologies within collaborative teams.</p>
<h3>Technical Skills</h3>
<ul>
<li><strong>Front-end:</strong> HTML, CSS, JavaScript, React</li>
<li><strong>Back-end:</strong> Node.js, Express, PostgreSQL</li>
<li><strong>Tools & Practices:</strong> Git, Agile, Test-Driven Development</li>
</ul>
<h3>Experience</h3>
<h4>Full Stack Bootcamp, CodeYourFuture <em>(Sep 2023 - Present)</em></h4>
<ul>
<li>Developing web applications using full-stack technologies in an Agile environment</li>
<li>Collaborating with cross-functional teams to deliver high-quality software solutions on time</li>
</ul>
<h4>Web Developer, RETAS LEEDS <em>(Jun 2016 - Present)</em></h4>
<ul>
<li>Designed and developed RETAS website, increasing donations by 25%</li>
<li>Enhanced user engagement by 50% through intuitive UI/UX design improvements</li>
<li>Achieved 95% on-time delivery rate, staying within 10% of project budget</li>
</ul>
<h4>Group Facilitator, Ingeus <em>(Jun 2011 - Jul 2015)</em></h4>
<ul>
<li>Led engaging workshops across West Yorkshire, fostering group collaboration and learning</li>
</ul>
<h3>Education</h3>
<ul>
<li><strong>Full Stack Bootcamp</strong>, CodeYourFuture <em>(2023 - Present)</em></li>
<li><strong>M.Sc. Biomedical Science</strong>, Nottingham Trent University <em>(2015 - 2016)</em></li>
<li><strong>PGDip, Learning and Development Management</strong>, University of Huddersfield <em>(2012 - 2015)</em></li>
</ul>
<h3>Projects</h3>
<ul>
<li><strong>Portfolio Website</strong>: Deployed portfolio showcasing 8 projects, including 3 mandatory CYF module projects</li>
<li><strong>Technical Test</strong>: Capable of building and deploying a full-stack product with end-to-end automated testing</li>
</ul>
<h3>Contact</h3>
<ul>
<li>Email: <a href="mailto:[email protected]">[email protected]</a></li>
<li>GitHub: <a href="https://github.com/fhkahin" target="_blank">github.com/fhkahin</a></li>
<li>Linkedin: <a href="https://uk.linkedin.com/in/fkahin" target="_blank">https://uk.linkedin.com/in/fkahin</a></li>
</ul>
</body>
</main>
<footer class="footer">
<div class="container">
<div class="row">
<div class="footer-col">
<h4>Useful Links</h4>
<ul>
<li><a href="about.html">about me</a></li>
<li><a href="projects.html">My projects</a></li>
<li><a href="contact.html">Contact me</a></li>
</ul>
</div>
<div class="footer-col">
<h4>Get connected</h4>
<ul>
<li><a href="https://www.linkedin.com/in/fkahin">My Linkedin</i></a>
<li><a href="about.html">My CV</a></li>
</ul>
</div>
</div>
</div>
</div>
</footer>
</body>
</html>