-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
115 lines (109 loc) · 3.65 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>HNG-TASK-ONE</title>
<link rel="stylesheet" href="styles.css" />
</head>
<body>
<header class="head">
<h1>
WHAT I LOOK FORWARD TO ACHIEVING IN THE NEXT TWO YEARS AS A FRONTEND
DEVELOPER
</h1>
</header>
<main class="main">
<div class="about">
<h2 data-testid="slackDisplayName" class="name">
Omotola Odusanya (Tolexy)
</h2>
<p data-testid="slackEmail" class="mail">
<a href="mailto:">[email protected]</a>
</p>
<p data-testid="currentTimeUTC" class="mail">
Current Time: <span id="currentTime"></span>
</p>
<p data-testid="currentDay" class="mail">
Current Day: <span id="currentDay"></span>
</p>
</div>
<div class="box">
<img
src="tolexy.jpg"
alt="Slack Profile Picture"
data-testid="slackProfilePicture"
class="image"
width="naturalWidth"
height="naturalHeight"
/>
</div>
<div class="write-up">
<div class="li">
<h2>My goals as a frontend web developer;</h2>
<ol>
<li>Master the basics</li>
<p>
Deepeen my knowledge in HTML5, CSS and also Javascript because
this are the basics needed in building a website
</p>
<li>Learn the frameworks, library and packages</li>
<p>
Learning frameworks like React and Vue, libraries such as Lodash,
and packages from npm to enhances my front-end skills.
</p>
<li>Apply for internships</li>
<p>
Applying for an internship is key to gaining practical experience.
I'll tailor my resume and cover letter, research companies, and
leverage networking opportunities. Preparing for interviews will
help me stand out. Securing an internship will provide invaluable
hands-on experience and open pathways to future career
opportunities.
</p>
<li>
Get a platform such as HNG to network and meet other developers
</li>
<p>
This is help me to meet people who are better than me for me to
learn from them and rub mind. It will also help to get more
opportunies in the tech world
</p>
<li>Get a job</li>
<p>
The main aim of the whole learning is to make money off it,
obviously after gathering knowledge in the field, the end point is
to secure a good paying job.
</p>
</ol>
</div>
</div>
</main>
<script src="script.js"></script>
<footer class="foot">
<p>
Are you interested in learning a skill? HNG is a platform where you can
learn about various tech skills of your choice, navigate to the link
below to connect with them to begin your journey to becoming a PRO!
</p>
<p>
<a href="https://hng.tech/learn" data-testid="hngLink" target="_blank"
>HNG Learn</a
>
</p>
<p>
<a href="https://keyword.dog" data-testid="keywordLink" target="_blank"
>Keyword Dog</a
>
</p>
<p>
<a
href="https://scrapeanyweb.site"
data-testid="scrapeanywebLink"
target="_blank"
>Scrape any Web</a
>
</p>
</footer>
</body>
</html>