-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
41 lines (34 loc) · 860 Bytes
/
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
<!DOCTYPE HTML>
<html>
<head>
<title>Stevedev - Steve Thompson</title>
<link href="https://fonts.googleapis.com/css?family=Roboto" rel="stylesheet">
<style type="text/css">
html{
font-family: monospace;
background: #FFF;
color: #222;
}
a { color: #888; }
@media (prefers-dark-interface) {
html {
background: #222;
color: #FFF;
}
a {
color: #AAF;
}
}
</style>
</head>
<body>
<h1>Steve Thompson</h1>
<p>
Hi! I'm Steve and I'm a senior software development manager at <a href="https://www.clio.com/">Clio</a>.
</p>
<ul>
<li><a href="https://www.linkedin.com/in/stevedev/">LinkedIn Profile</a></li>
<li><a href="https://github.com/stevedev">GitHub</a></li>
</ul>
</body>
</html>