-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
95 lines (93 loc) · 3.22 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Graydon Truth</title>
<style>
body {
background-image: url("skunkworks_africa.png");
height: 100vh;
background-size: cover;
background-position: center;
margin: 0;
padding: 0;
font-family: Arial, sans-serif;
color: white;
}
.header {
text-align: center;
padding: 20px;
background-color: rgba(0, 0, 0, 0.5);
}
.header h1 {
color: #ADD8E6;
margin: 0;
}
.content {
text-align: center;
padding: 20px;
background-color: rgba(0, 0, 0, 0.5);
margin: 20px;
border-radius: 10px;
}
.links a {
display: block;
margin: 5px 0;
color: #ADD8E6;
text-decoration: none;
font-size: 1.2em;
}
.links a:hover {
text-decoration: underline;
}
.nav-bar {
text-align: center;
background-color: rgba(0, 0, 0, 0.7);
padding: 10px;
position: fixed;
width: 100%;
top: 0;
z-index: 1000;
}
.nav-bar a {
color: #ADD8E6;
margin: 0 15px;
text-decoration: none;
font-size: 1.2em;
}
.nav-bar a:hover {
text-decoration: underline;
}
</style>
</head>
<body>
<div class="nav-bar">
<a href="index.html">Home</a>
<a href="onboarding.html">Onboarding</a>
<a href="projects.html">Projects</a>
<a href="placements.html">Placements</a>
</div>
<div class="header">
<h1><u>RICKY GRAYDON ROBERTS</u></h1>
</div>
<div class="content">
<h2>Welcome to my Website!</h2>
<p>
I’m Ricky Graydon Roberts, a passionate junior developer and data analyst for Skunkworks.africa.
With a love for problem-solving and a keen eye for patterns, I’m diving headfirst into the world of coding and data exploration.
Join me as I unravel insights, write elegant code, and embark on this exciting career journey.
</p>
<p>Contact me by clicking the links below or email me at:</p>
<p><b>graydontruth@gmail.com or ricky@skunkworks.africa</b></p>
<div class="links">
<a href="https://www.fiverr.com/graydontruth" target="_blank">Fiverr</a>
<a href="https://www.linkedin.com/in/ricky-roberts-995868314" target="_blank">LinkedIn</a>
<a href="https://www.github.com/GraydonTruth" target="_blank">GitHub</a>
<a href="https://www.credly.com/users/ricky-roberts" target="_blank">Credly</a>
<a href="https://www.upwork.com/freelancers/~01959280d01cae5ff7" target="_blank">UpWork Talent</a>
<a href="https://www.offerzen.com/candidate/ricky-roberts" target="_blank">Offerzen</a>
</div>
</div>
</body>
</html>