This commit is contained in:
Simon O'Shea
2023-02-06 10:29:05 -05:00
5 changed files with 125 additions and 0 deletions
+27
View File
@@ -0,0 +1,27 @@
<!DOCTYPE html>
<html>
<head>
<link rel="stylesheet" type="text/css" href="style.css"/>
</head>
<body>
<div class="bar">
<a href="index.html" style="font-size: 12px; text-decoration: none;">HOME</a>
</div>
<div class="main">
<p>
my name is simon, and you found me<br>
enjoy your stay<br><br><br><br><br><br>
my links: <a href="https://www.linkedin.com/in/simon-o-shea">linkedin</a> | <a href="https://www.github.com/osheas1atwit">github</a>
</p>
</div>
</body>
</html>
+23
View File
@@ -0,0 +1,23 @@
<!DOCTYPE html>
<html>
<head>
<link rel="stylesheet" type="text/css" href="style.css"/>
</head>
<body>
<div class="main">
<p>
you made it! congratulations :) <br>
this is my corner of the internet, feel free to explore <br><br><br><br>
<a href="logs.html">logs</a>
-
<a href="projects.html">projects</a>
-
<a href="about.html">about</a>
</p>
</div>
</body>
</html>
+35
View File
@@ -0,0 +1,35 @@
<!DOCTYPE html>
<html>
<head>
<link rel="stylesheet" type="text/css" href="style.css"/>
</head>
<body>
<div class="bar">
<a href="index.html" style="font-size: 12px; text-decoration: none; color: black;">HOME</a>
</div>
<div class="main">
<p>
<br><br><br>- my collection of logs -<br><br><br>
<a href="logs/weblog.html">~web development log</a><br>
where i log work i'm doing on here
<br><br>
<a href="logs/booklog.html">~personal book log</a><br>
where i write a little blurb about books i've read
<br><br>
<a href="logs/fb.txt">~making a fingerboard</a><br>
things i've learned<br>
</p>
</div>
</body>
<!html>
+36
View File
@@ -0,0 +1,36 @@
<!DOCTYPE html>
<html>
<head>
<link rel="stylesheet" type="text/css" href="style.css"/>
</head>
<body>
<div class="bar">
<a href="index.html" style="font-size: 12px; text-decoration: none;">HOME</a>
</div>
<div class="main">
<p>
<br><br><br>- personal projects -<br><br><br>
<a href="projects/homepage/homepage.html">~web browser new tab template</a><br>
use these html/css files as a<br>
startpage for your browser<br><br>
<a href="projects/cigarbox/Cigar Box Guitar.pdf">~cigar box guitar</a><br>
my final project for History of<br>
American Folk Music, a fretted<br>
cigarbox guitar<br><br>
<a href="projects/fingerboards/fb.html">~fingerboards</a><br>
after skateboarding for a few<br>
years, i got my first tech deck<br>
and began fingerboarding. i also<br>
make them for myself and friends<br><br>
</p>
</div>
</body>
</html>
+4
View File
@@ -0,0 +1,4 @@
div.main {top: 5%; left: 0; width: 99%; height: 95%; position: absolute; display: table; justify: center;}
p {display: table-cell; vertical-align: middle; text-align: center;}
a { color: black; }
div.bar { position: fixed; top: 0; z-index: 1; }