-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
139 lines (139 loc) · 5.65 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
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title>Lucas Everett</title>
<!--
LLLLLLLLLLL EEEEEEEEEEEEEEEEEEEEEE
L:::::::::L E::::::::::::::::::::E
L:::::::::L E::::::::::::::::::::E
LL:::::::LL EE::::::EEEEEEEEE::::E
L:::::L E:::::E EEEEEE
L:::::L E:::::E
L:::::L E::::::EEEEEEEEEE
L:::::L E:::::::::::::::E
L:::::L E:::::::::::::::E
L:::::L E::::::EEEEEEEEEE
L:::::L E:::::E
L:::::L LLLLLL E:::::E EEEEEE
LL:::::::LLLLLLLLL:::::L EE::::::EEEEEEEE:::::E
L::::::::::::::::::::::L E::::::::::::::::::::E
L::::::::::::::::::::::L E::::::::::::::::::::E
LLLLLLLLLLLLLLLLLLLLLLLL EEEEEEEEEEEEEEEEEEEEEE
-->
<link rel="stylesheet" href="styles.css?v=1734654462" />
</head>
<body>
<nav>
<div class="name"><a href="#top">Lucas Everett</a></div>
<ul>
<li><a href="#recent">Recent Projects</a></li>
<li><a href="#about">About Lucas</a></li>
<li><a href="#skills">Technical Skills</a></li>
</ul>
<div class="social">
<a href="https://github.com/lucaseverett" target="_blank"
><img src="icons/github.svg?v=1734654462" alt="GitHub" /></a
><a href="https://x.com/lucaseverett" target="_blank"
><img src="icons/x-twitter.svg?v=1734654462" alt="X (Twitter)" /></a
><a href="https://bsky.app/profile/lucaseverett.dev" target="_blank"
><img src="icons/bluesky.svg?v=1734654462" alt="Bluesky" /></a
><a href="https://www.linkedin.com/in/lucaseverett/" target="_blank"
><img src="icons/linkedin.svg?v=1734654462" alt="LinkedIn"
/></a>
</div>
</nav>
<section id="hello">
<div class="about">
<h1>
Hello, I'm <span>Lucas Everett</span> — an
<span>open-source developer</span> based in Nashville, Tennessee.
</h1>
<div class="social">
<a href="https://github.com/lucaseverett" target="_blank"
><img src="icons/github.svg?v=1734654462" alt="GitHub" /></a
><a href="https://x.com/lucaseverett" target="_blank"
><img src="icons/x-twitter.svg?v=1734654462" alt="X (Twitter)" /></a
><a href="https://bsky.app/profile/lucaseverett.dev" target="_blank"
><img src="icons/bluesky.svg?v=1734654462" alt="Bluesky" /></a
><a href="https://www.linkedin.com/in/lucaseverett/" target="_blank"
><img src="icons/linkedin.svg?v=1734654462" alt="LinkedIn"
/></a>
</div>
</div>
<div class="headshot"><div class="photo"></div></div>
</section>
<section id="recent">
<h2>Recent <span>Projects</span></h2>
<ul>
<li>
<a href="https://easyspeeddial.com/" target="_blank"
><img src="thumbs/toolbar-dial-thumb.png?v=1734654462" alt="" />
<div class="project-title">Easy Speed Dial</div>
<div class="project-description">Browser Extension</div></a
>
</li>
<li>
<a href="https://apps.lucaseverett.dev/tic-tac-toe" target="_blank"
><img src="thumbs/tic-tac-toe-thumb.png?v=1734654462" alt="" />
<div class="project-title">Tic-Tac-Toe</div>
<div class="project-description">Game</div></a
>
</li>
</ul>
</section>
<section id="about">
<h2>About <span>Lucas</span></h2>
<div class="side-by-side">
<div class="left">
<div class="current">
<span>Client Website Administrator</span> at Jack Henry & Associates
</div>
As Client Website Administrator, my role is to serve as the primary
point of contact for more than 100 financial institutions. Multiple
teams and personnel are involved in the design, development, and
support of our customer's websites, and a lot of juggling and
coordinating is required while researching and resolving customer
issues.
</div>
<div class="right">
<div class="strengths">My Strengths:</div>
<ul>
<li>Expertise in HTML, CSS, and JavaScript</li>
<li>Adept at clearly communicating technical information</li>
<li>Analytical, problem-solving, and critical-thinking skills</li>
<li>Comfortable working alone or with a team</li>
</ul>
</div>
</div>
</section>
<section id="skills">
<h2>Technical <span>Skills</span></h2>
<div>
<ul>
<li><img src="icons/html5.svg?v=1734654462" alt="" />HTML</li>
<li><img src="icons/css3.svg?v=1734654462" alt="" />CSS</li>
<li>
<img src="icons/javascript.png?v=1734654462" alt="" />JavaScript
</li>
<li><img src="icons/react.png?v=1734654462" alt="" />React</li>
<li><img src="icons/node.png?v=1734654462" alt="" />Node.js</li>
<li><img src="icons/git.png?v=1734654462" alt="" />Git</li>
</ul>
</div>
</section>
<script>
window.onscroll = () => {
if (
window.matchMedia("(min-width: 1020px)").matches &&
window.scrollY > 0
) {
document.body.classList.add("fixed");
} else {
document.body.classList.remove("fixed");
}
};
</script>
</body>
</html>