-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathabout.html
More file actions
100 lines (98 loc) · 3.95 KB
/
about.html
File metadata and controls
100 lines (98 loc) · 3.95 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Jibril Richter</title>
<link
href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.3/dist/css/bootstrap.min.css"
rel="stylesheet"
integrity="sha384-QWTKZyjpPEjISv5WaRU9OFeRpok6YctnYmDr5pNlyT2bRjXh0JMhjY6hW+ALEwIH"
crossorigin="anonymous"
/>
<link
href="https://unpkg.com/boxicons@2.1.4/css/boxicons.min.css"
rel="stylesheet"
/>
<link rel="stylesheet" href="./style1.css" />
</head>
<body>
<section class="nav-bar">
<nav class="navbar navbar-expand-sm bg-body-light">
<div class="container">
<a class="navbar-brand" href="#">JR</a>
<button
class="navbar-toggler"
type="button"
data-bs-toggle="collapse"
data-bs-target="#navbarNavAltMarkup"
aria-controls="navbarNavAltMarkup"
aria-expanded="false"
aria-label="Toggle navigation"
>
<img src="./images/list.svg" alt="menu-bar" />
</button>
<div class="collapse navbar-collapse" id="navbarNavAltMarkup">
<div class="navbar-nav ms-auto">
<a class="nav-link" aria-current="page" href="./index.html"
>Home</a
>
<a class="nav-link" href="./about.html">About Me</a>
<a class="nav-link" href="#">Portfolio</a>
<a class="nav-link" href="#">Contact</a>
</div>
</div>
</div>
</nav>
</section>
<section class="About-session">
<div class="container">
<h1 class="text-center mb-5">About Me</h1>
<div class="row">
<div class="col-lg-5 mb-3">
<img
src="./images/newProfilePic-2.JPG"
width="350px"
alt="jibril-img"
class="rounded img-fluid"
/>
</div>
<div class="col-lg-7">
<p>
I am Jibril Richter, a software developer. My journey to software
engineering has been interesting. I had my education in Political
Science and Data Science, bachelor's and master's degrees,
respectively. However, I took a Database and Data Management
course during my master's program where we built a web app for the
course, and I realized this is my "thing!".
</p>
<p>
Right after graduating, I interned at the Eastern Illinois
University web development office, where I learned frontend
technologies such as HTML, CSS, and JavaScript. I used them to
build different games for fun. Also, I got experience building
Restful API architecture with Java and Spring Framwork.
</p>
<p>
Before diving into software development, I worked as a Research
Scientist at the Center for Strategic and Defense Studies, Africa,
where I honed my skills in hypothesis development, data
collection, and analysis with Python libraries such as Pandas,
Numpy, and Seaborn. I dealt with both quantitative and qualitative
research concerning various social and political problems.
</p>
<p>
I have experience collaborating with diverse teams across local
and international projects, which has enhanced my written and
verbal communication skills, problem-solving skills, and team
player skills. I am a continuous learner and adapt to new
environments. I am confident in my skills and convinced that I
could be a valuable team member. I would be happy to discuss any
software development roles.
</p>
</div>
</div>
</div>
</section>
</body>
</html>