-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
29 lines (29 loc) · 1.03 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Frontend Task</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<header>
<h1>Hi my name is Ladalo Welcome onboard to my profile!</h1>
</header>
<section>
<h3>My Profile:</h3>
<ul>
<li>Slack Name: <span data-testid="slackUserName"></span></li>
<li><img src="" alt="" data-testid="slackDisplayImage"></li>
<li>Current Day of the Week: <span data-testid="currentDayOfTheWeek"></span></li>
<li>Current UTC Time: <span data-testid="currentUTCTime"></span></li>
<li>Track: <span data-testid="myTrack"></span></li>
<li>GitHub URL: <a href="" data-testid="githubURL">My project githubURL</a></li>
</ul>
</section>
<footer>
<p>SUBMISSION DEADLINE: September 12, 2023, at 11:59 PM WAT</p>
</footer>
<script src="script.js"></script>
</body>
</html>