96 lines
2.3 KiB
HTML
96 lines
2.3 KiB
HTML
<!DOCTYPE html><html><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">
|
|
<title> logan's site </title>
|
|
<link rel="icon" type="image/x-icon" href="favicon.gif">
|
|
<style>
|
|
@font-face {
|
|
font-family: 'merriweather';
|
|
src: url(/res/merriweather-regular.woff2);
|
|
}
|
|
|
|
@font-face {
|
|
font-family: 'cascadia';
|
|
src: url(/res/cascadiacode.woff2);
|
|
}
|
|
|
|
body {
|
|
font-family: merriweather;
|
|
background-image: url("/res/grey.png");
|
|
background-repeat: repeat;
|
|
padding: 20px 10px 20px;
|
|
line-height: 1.75em;
|
|
height: 100%;
|
|
max-width: 40em;
|
|
display: flex;
|
|
margin: auto;
|
|
}
|
|
|
|
main {
|
|
border-radius: 15px;
|
|
padding: 15px;
|
|
background-color: #ffeedd;
|
|
margin: 2px;
|
|
width: 100%
|
|
}
|
|
|
|
code {
|
|
font-family: cascadia;
|
|
}
|
|
|
|
table {
|
|
margin-left: auto;
|
|
margin-right: auto;
|
|
}
|
|
|
|
table, th, td {
|
|
padding: 5px;
|
|
border: 3px solid black;
|
|
border-style: solid;
|
|
border-collapse: collapse;
|
|
/* text-align: center; */
|
|
align-content: center;
|
|
}
|
|
|
|
a {
|
|
color: #df3e23;
|
|
font-style: italic;
|
|
text-decoration: none;
|
|
}
|
|
|
|
a:visited {
|
|
color: #df3e23;
|
|
font-style: italic;
|
|
text-decoration: none;
|
|
}
|
|
|
|
a:hover:before {
|
|
content: "[";
|
|
font-style: normal;
|
|
color: black;
|
|
}
|
|
|
|
a:hover:after {
|
|
content: "]";
|
|
font-style: normal;
|
|
color: black;
|
|
}
|
|
</style>
|
|
</head><body><main><h1>logan's site</h1>
|
|
<hr/>
|
|
<h2>me</h2>
|
|
<p>I am a programming and philosophy enthusiast. Once upon a time i was a
|
|
competitive debater on a few local and state circuits. After over 10 years of
|
|
doing robotics I'm finally starting to get the hang of it. Currently in the
|
|
process of discovering my love for hypertext and the world wide web!</p>
|
|
<h2>portfolio</h2>
|
|
<ul>
|
|
<li><a href="https://git.lgatlin.dev/logan">my git server</a></li>
|
|
<li><a href="https://git.lgatlin.dev/logan/website">http web server</a></li>
|
|
<li><a href="https://git.lgatlin.dev/logan/html-templater">html templating language</a></li>
|
|
<li><a href="https://git.lgatlin.dev/logan/forte">stack based assembly language</a></li>
|
|
<li><a href="https://git.lgatlin.dev/logan/fishbowl">kinematic image processing</a></li>
|
|
<li><a href="https://git.lgatlin.dev/logan/nrange">n dimensional cartesian product</a></li>
|
|
<li><a href="https://git.lgatlin.dev/logan/stocks">stock trading algorithm</a></li>
|
|
</ul>
|
|
</main></body></html> |