This commit is contained in:
Greg Shuflin 2021-01-14 02:05:44 -08:00
parent 64a7c765b6
commit be6725503f
2 changed files with 49 additions and 51 deletions

View File

@ -1,61 +1,14 @@
<!DOCTYPE html> <!DOCTYPE html>
<html> <html>
<head> <head>
<title>Greg Shuflin Developer Portfolio</title> <title>Greg Shuflin Developer Portfolio</title>
<meta charset='utf-8'/> <meta charset='utf-8'/>
<style type='text/css' media='screen'> <link href="style.css" rel="stylesheet"/>
@import url(http://fonts.googleapis.com/css?family=Ubuntu:400,700,400italic,700italic);
h1 {
font-family: Ubuntu;
}
#main {
margin-left:auto;
margin-right:auto;
width:960px;
}
body {
background-color:#2B2B4D;
color: white;
font-family: Ubuntu;
}
b {
font-weight:bolder;
}
a {
color:#ff3333;
font-weight:bolder;
}
a:visited {
color:#ff3333;
}
li {
font-family: Ubuntu;
margin-bottom:10px;
}
a.codeLink {
color:#31E631;
font-weight:normal;
}
code {
color:#31E631;
}
</style>
</head> </head>
<body> <body>
<script src="main.js"></script>
<div id='main'> <div id='main'>
<h1>Greg Shuflin</h1> <h1>Greg Shuflin</h1>
<p>Contact me: <code>greg [dot] shuflin [at] protonmail [dot] com</code> <p>Contact me: <a class="emailLink" href="mailto:greg.shuflin+developerportfolio@protonmail.com">greg.shuflin@protonmail.com</a>.
<p> I maintain a <a href='https://www.linkedin.com/in/gregshuflin/'>LinkedIn</a> account. <p> I maintain a <a href='https://www.linkedin.com/in/gregshuflin/'>LinkedIn</a> account.

45
style.css Normal file
View File

@ -0,0 +1,45 @@
@import url(http://fonts.googleapis.com/css?family=Ubuntu:400,700,400italic,700italic);
h1 {
font-family: Ubuntu;
}
#main {
margin-left:auto;
margin-right:auto;
width:960px;
}
body {
background-color:#2B2B4D;
color: white;
font-family: Ubuntu;
}
b {
font-weight:bolder;
}
a {
color:#ff3333;
font-weight:bolder;
}
a:visited {
color:#ff3333;
}
li {
font-family: Ubuntu;
margin-bottom:10px;
}
a.codeLink {
color:#31E631;
font-weight:normal;
}
a.emailLink {
color:#31E631;
font-family: "monospace";
text-decoration: none;
}