-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
91 lines (89 loc) · 3.07 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<meta name="robots" content="noindex, nofollow">
<title>Cody Stone, About Me</title>
<style>
body {
font-family: Arial, sans-serif;
margin: 0;
padding: 0;
background-color: #121212;
color: #e0e0e0;
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
}
.container {
width: 90%;
max-width: 900px;
background-color: #1c1c1c;
padding: 50px;
border-radius: 8px;
box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
text-align: center;
}
.headshot {
width: 30%;
height: 30%;
border-radius: 50%;
/* margin-top: 40px;
margin-bottom: 20px;
/* object-fit: cover;
}
h1 {
font-size: 2.5em;
margin-bottom: 10px;
color: #ffffff;
}
h2 {
font-size: 1.5em;
color: #aaaaaa;
margin-bottom: 20px;
}
.about-me {
font-size: 1.1em;
line-height: 1.6;
margin-bottom: 30px;
color: #e0e0e0;
}
.social-links a {
margin: 0 15px;
text-decoration: none;
color: #1e90ff;
font-size: 1.2em;
}
.social-links a:hover {
color: #63a4ff;
}
</style>
</head>
<body>
<div class="container">
<header>
<img src="headshot.png" alt="A picture of Cody Stone" class="headshot">
<h1>Cody Stone</h1>
<h2>Payroll technologist, people person, relentless problem solver.</h2>
</header>
<section class="about-me">
<h3>About Me</h3>
<p>
I’m a dynamic professional with expertise in bridging people and technology. I’ve built a career on solving complex challenges, fostering strong relationships, and driving efficiency—and having a little fun along the way.
<br>
<br>
Whether it's automating workflows or managing large-scale partnerships, I’m passionate about creating meaningful impact through innovation and collaboration. I know the importance of getting it right the first time. I have a love for data, precise language, and tight communications. I'm always learning something new, and my professional love language is a spreadsheet.
</p>
</section>
<section class="social-links">
<a href="resume.pdf" target="_blank">Resume/CV</a>
<br>
<a href="mailto:[email protected]" target="_blank">[email protected]</a>
<a href="https://github.com/cody" target="_blank">https://github.com/cody</a>
</section>
</div>
</body>
</html>