-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
88 lines (88 loc) · 2.59 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Goal</title>
<link rel="stylesheet" href="./index.css" />
<link rel="stylesheet" href="./media.css" />
</head>
<body>
<header class="first">
<h1></h1>
</header>
<main id="second">
<div class="items">
<div class="img">
<img
src="./public/images/cloud-computing.jpg"
alt="cloud-computing"
/>
</div>
<h2>Master Cloud Computing</h2>
<p>
Learn and get certified in AWS and Azure to enhance my cloud
architecture skills.
</p>
</div>
<div class="items">
<div class="img">
<img
src="./public/images/machine-learning.jpg"
alt="machine-learning"
/>
</div>
<h2>Develop a Machine Learning Project</h2>
<p>
Create a machine learning model to predict customer behavior using
Python and TensorFlow.
</p>
</div>
<div class="items">
<div class="img">
<img src="./public/images/open-source.jpg" alt="open source" />
</div>
<h2>Contribute to Open Source</h2>
<p>
Actively contribute to open-source projects on GitHub to improve my
coding skills and give back to the community.
</p>
</div>
</main>
<footer>
<div id="slack-pic">
<img
data-testid="slackProfilePicture"
src="./public/images/slack-pic.jpg"
alt="slack-pic"
/>
</div>
<div id="slack-details">
<div class="align-left">
<span id="name" data-testid="slackDisplayName">Nnamdi James</span>
<span id="email" data-testid="slackEmail"
>egentinnamdi10@gmail.com</span
>
<span id="time" data-testid="currentTimeUTC">Time in UTC</span>
<span id="day" data-testid="currentDay">Day of the week</span>
</div>
</div>
<div class="links">
<span>links</span>
<a data-testid="hngLink" href="https://hng.tech/learn" target="_blank"
>www.hng.tech/learn</a
>
<a data-testid="keywordLink" href="https://keyword.dog/" target="_blank"
>www.keyword.dog</a
>
<a
data-testid="scrapeanywebLink"
href="https://scrapeanyweb.site/"
target="_blank"
>www.scrapeanyweb.site</a
>
</div>
</footer>
<script src="./index.js"></script>
</body>
</html>