-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.html
More file actions
83 lines (81 loc) · 2.33 KB
/
index.html
File metadata and controls
83 lines (81 loc) · 2.33 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<meta name="author" content="Jacob R. Dale" />
<title>Jacob R. Dale</title>
<style>
/* Reset */
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
background-color: #121212;
color: #e0e0e0;
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
min-height: 100vh;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
padding: 2rem;
text-align: center;
}
h1 {
font-size: 3rem;
margin-bottom: 0.5rem;
color: #ff6f00;
}
p {
font-size: 1.3rem;
color: #bbb;
margin-bottom: 2rem;
max-width: 600px;
line-height: 1.5;
}
.links {
margin-top: 1.5rem;
display: flex;
flex-wrap: wrap;
gap: 1.5rem;
justify-content: center;
max-width: 500px;
}
.links a {
color: #ff6f00;
text-decoration: none;
font-weight: 600;
transition: color 0.3s;
word-break: break-word;
}
.links a:hover {
color: #ffa000;
text-decoration: underline;
}
footer {
margin-top: 3rem;
color: #555;
font-size: 0.9rem;
}
</style>
</head>
<body>
<h1>Jacob R. Dale</h1>
<p>Software developer, tech enthusiast, and all-around coder. Building cool stuff, one line of code at a time.</p>
<div class="links">
<a href="https://bitbucket.org/stetupdev" target="_blank" rel="noopener noreferrer">Bitbucket (stetupdev)</a>
<a href="https://github.com/jacobrdale" target="_blank" rel="noopener noreferrer">GitHub (jacobrdale)</a>
<a href="https://www.codecademy.com/profiles/stetup" target="_blank" rel="noopener noreferrer">Codecademy (stetup)</a>
<a href="https://twitter.com/stetupyt" target="_blank" rel="noopener noreferrer">Twitter (@stetupyt)</a>
<a href="https://c.im/@stetup" target="_blank" rel="noopener noreferrer">Mastodon (c.im/@stetup)</a>
<a href="https://mastodon.social/@stetup" target="_blank" rel="noopener noreferrer">Mastodon (mastodon.social/@stetup)</a>
<a href="mailto:jacob@stetup.com">Email Me</a>
</div>
<footer>
© 2025 Jacob R. Dale. All rights reserved.
</footer>
</body>
</html>