-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
123 lines (122 loc) · 4.85 KB
/
index.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Personal Goal Outline Website</title>
<link rel="stylesheet" href="index.css" />
</head>
<body>
<div class="container">
<section id="profile">
<div class="profile_container">
<span>
<img
src="https://ca.slack-edge.com/T07466B189M-U07ADUREH3K-47f38772766d-48"
alt="my_image"
data-testid="slackProfilePicture"
/>
</span>
<span>
<p class="slack-name" data-testid="slackDisplayName">SAGHE_DEV</p>
<p class="slack-email" data-testid="slackEmail">
</p>
</span>
</div>
<div class="date_time">
<div class="time_container">
<span class="today_container">
<span>Today is:</span>
<span class="today" id="today" data-testid="currentDay"> </span>
</span>
</div>
<div class="time_container">
<span class="today_container">
<span>The UTC time is:</span>
<span class="today" id="time" data-testid="currentTimeUTC">
</span>
</span>
</div>
</div>
</section>
<section id="about_section">
<h3 class="head">About me</h3>
<p class="about_me">
My name is Adekola Abdulhakeem. I am a young developer who has a great
affinity for growth and development. Of course i'm a frontend
developer and an aspiring full-stack developer, who uses his skill to
create eye-catchy nad functional websites. I really love problem
solving and i love facing challenges. If you wish to know more about
me, you can reach out to me either on whatsapp or email.
</p>
</section>
<section id="goal_section">
<h3 class="head">My Goals for the next 2 years in the tech field.</h3>
<ul class="goal_lists">
<li><strong>1.</strong> Becoming a Full-Stack Developer.</li>
<p class="goal_des">
Becoming a Full-Stack Developer has always been what I aspire since
the very first day i started my career in Web development. I wish to
do so because I love to work independently nad don't rely on others
e.g waiting for a backend developer to provide an API before i can
consume it. I plan to learn languages like
<strong>PHP, PHYTON, NODE, LARAVEL</strong> and so on...
</p>
<li>
<strong>2.</strong>Working as a Developer in an abroad based
company.
</li>
<p class="goal_des">
Working as a Developer in an abroad based is one of my goal in the
next two years because it requires that i attain a level of
proficiency to be able to do something like that. I plan to aquire a
vast knowledge in the field of Programming to be able to achive this
goal.
</p>
<li><strong>3.</strong> Becoming a Senior Frontend Developer.</li>
<p class="goal_des">
As we know that to be able to be called a senior developer is to
have gone through several tough processes and shpould have gained a
vast knowledge in the field of Frontend Development. Yees i think i
can achieve this.
</p>
<li>
<strong>4.</strong>Succesfully creating an international community
that connects Muslim Programmers and Developers.
</li>
<p class="goal_des">
There ought to have been a community that connects Muslim
Developers, but since i haven't encountered one before, i plan to
form a team with other Programmerswith same mindset to build such
community.
</p>
<li>
<strong>5.</strong> Become a Guest Speaker at least a Tech Event.
</li>
<p class="goal_des">
Not only implementing my knowlegde by working on a system, i also
wish ti impact people with my skills physically by lecturing them on
the most lucratiev way to navigate through their journey in tech.
</p>
</ul>
</section>
</div>
<footer>
<p>Visit other pages:</p>
<a href="http://hng.tech/learn" target="_blank" data-testid="hngLink"
>hng.tech/learn</a
>
<a href="http://keyword.dog/" target="_blank" data-testid="keywordLink"
>keyword.dog</a
>
<a
href="http://scrapeanyweb.site/"
target="_blank"
data-testid="scrapeanywebLink"
>scrapeanyweb.site</a
>
</footer>
</body>
<script src="index.js"></script>
</html>