-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
54 lines (50 loc) · 2.24 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Code by Jedidiah</title>
<link rel="stylesheet" href="assets/css/style.css">
<link
href="https://fonts.googleapis.com/css2?family=Montserrat:wght@400;700&family=Roboto:wght@400;700&display=swap"
rel="stylesheet">
</head>
<body>
<header>
<h1>Hi, I'm Jedidiah </h1>
</header>
<main>
<section class="intro">
<p>In the next 2 years, I envision myself as an established programmer, having honed my skills and gained
valuable experience in various programming languages and technologies.
I aspire to be recognized for my expertise and contributions in the industry, working on challenging
projects and making a meaningful impact.</p>
</section>
<section class="contact-info">
<h2>Contact Info</h2>
<div class="info">
<p><strong>Slack Display Name:</strong> <span data-testid="slackDisplayName">Jedidiah</span></p>
<p><strong>Slack Email:</strong> <span data-testid="slackEmail">jedbert@yahoo.com</span></p>
<div class="profile-picture">
<img src="assets/images/profile-picture.jpg" alt="Slack Profile Picture"
data-testid="slackProfilePicture">
</div>
</div>
</section>
<section class="current-time">
<h2>Current Time and Day</h2>
<p>Current Time (UTC): <span data-testid="currentTimeUTC" id="currentTimeUTC"></span></p>
<p>Current Day: <span data-testid="currentDay" id="currentDay"></span></p>
</section>
<section class="links">
<h2>Useful Links</h2>
<ul>
<li><a href="https://hng.tech/learn" data-testid="hngLink">HNG Tech Learn</a></li>
<li><a href="https://keyword.dog" data-testid="keywordLink">Keyword Dog</a></li>
<li><a href="https://scrapeanyweb.site" data-testid="scrapeanywebLink">Scrape Any Web</a></li>
</ul>
</section>
</main>
<script src="assets/js/script.js"></script>
</body>
</html>