-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
72 lines (71 loc) · 2.15 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
<!DOCTYPE html>
<html lang="en">
<head>
<link rel="preload" href="assets/images/ikenna-richard.jpg" as="image">
<link rel="stylesheet" href="style.css">
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<script src="script.js" defer></script>
<title>Ikenna Richard</title>
</head>
<body>
<main>
<div class="image-container">
<img
src="assets/images/ikenna-richard.jpg"
alt="Ikenna Richard"
class="profile-image"
data-testid="slackProfilePicture"
>
</div>
<div class="profile">
<h1 data-testid="slackDisplayName">Ikenna Richard</h1>
<h2 class="job-title">frontend engineer</h2>
<div class="my-goals">
<h2>My goals...</h2>
<p>I'm looking to copmplete the <a href="https://hng.tech/learn" target="blank" data-testid="hngLink">HNG internship</a> and ultimately transition into a frontend developer role.
</p>
<p>Build a strong professional network by actively engaging in online communities such as Linkedin.</p>
<p>
Interested in working together?
</p>
<a
class="my-email-link"
href="mailto:oguejioforrichard@gmail.com"
data-testid="slackEmail">
Email me
</a>
</div>
<footer>
<div class="links">
<h3>Useful resources...</h3>
<ul class="links-list">
<li>
<a
href="https://keyword.dog"
target="_blank"
data-testid="keywordLink">
Keyword
</a>
</li>
<li>
<a
href="https://scrapeanyweb"
target="_blank"
data-testid="scrapeanywebLink">
Scrape Any Web
</a>
</li>
</ul>
</div>
<div class="day-time">
<span>©HNG -</span>
<span class="current-day" data-testid="currentDay"></span>
<span>,</span>
<span class="current-time" data-testid="currentTimeUTC"></span>
</div>
</footer>
</div>
</main>
</body>
</html>