Completely redid the site with actual CSS this time yae
This commit is contained in:
parent
0de88e440d
commit
244772fb13
54
index.html
54
index.html
@ -1,16 +1,58 @@
|
|||||||
<!DOCTYPE html>
|
<!DOCTYPE html>
|
||||||
<html>
|
<html>
|
||||||
</head>
|
</head>
|
||||||
<title>Greg Shuflin Projects</title>
|
<title>Greg Shuflin Developer Portfolio</title>
|
||||||
|
<meta charset='utf-8'/>
|
||||||
|
<style type='text/css' media='screen'>
|
||||||
|
#main {
|
||||||
|
margin-left:auto;
|
||||||
|
margin-right:auto;
|
||||||
|
width:960px;
|
||||||
|
}
|
||||||
|
|
||||||
|
body {
|
||||||
|
background-color:#2B2B4D;
|
||||||
|
color: white;
|
||||||
|
font-family: Tahoma;
|
||||||
|
}
|
||||||
|
a {
|
||||||
|
color:#ff3333;
|
||||||
|
font-weight:bolder;
|
||||||
|
}
|
||||||
|
|
||||||
|
a:visited {
|
||||||
|
color:#ff0000;
|
||||||
|
}
|
||||||
|
|
||||||
|
li {
|
||||||
|
font-family: Helvetica;
|
||||||
|
margin-bottom:10px;
|
||||||
|
}
|
||||||
|
|
||||||
|
code {
|
||||||
|
color:#31E631;
|
||||||
|
}
|
||||||
|
|
||||||
|
</style>
|
||||||
</head>
|
</head>
|
||||||
<body>
|
<body>
|
||||||
<h1>Projects</h1>
|
<div id='main'>
|
||||||
|
<h1>Greg Shuflin</h1>
|
||||||
|
Contact me: <code>greg [dot] shuflin [at] gmail [dot] com</code>
|
||||||
|
<h2>Developer Portfolio</h2>
|
||||||
|
<p>These are a few software projects I have worked on, either for a
|
||||||
|
class or independently, that I think are particularly interesting.
|
||||||
|
You can see the source code for these and other projects I'm working
|
||||||
|
on <a href="https://github.com/neunenak">on my Github profile</a>.
|
||||||
|
|
||||||
<ul>
|
<ul>
|
||||||
<li> <a href="https://github.com/neunenak/Raytracer">C++ Raytracer</a> written for CS184 Intro to Computer Graphics. This was a partner project with <a href="https://github.com/miedwards">Mark Edwards</a>
|
<li> <a href="https://github.com/neunenak/Raytracer">C++ Raytracer</a> written for CS184 at UC Berkeley, Intro to Computer Graphics. This was a partner project with <a href="https://github.com/miedwards">Mark Edwards</a>
|
||||||
<li> <a href="http://neunenak.github.com/html5go">HTML 5 Go</a>
|
<li> <a href="http://neunenak.github.com/html5go/go.html">HTML 5 Go</a>
|
||||||
Implementation of the board game Go in pure HTML5, using the canvas (work in progress).
|
an implementation of the board game Go (碁) in pure HTML5. It uses the canvas to draw the gameboard, with the game logic written in Javascript (work in progress - the game is playable but some more advanced features are not yet implemented)
|
||||||
<li> <a href="http://blazing-night-9415.herokuapp.com/dictionary">Arbitrary-language Django Dictionary</a>
|
<li> <a href="http://blazing-night-9415.herokuapp.com/dictionary">Arbitrary-language Django Dictionary</a>
|
||||||
This version is currently hosted on heroku and is being used as a dictionary for a constructed langauge. A next version with cleaner CSS and an updated layout is in progress.
|
a web interface for a dictionary in an arbitrary language, written
|
||||||
|
using the Django Python web framework and currently hosted on Heroku.
|
||||||
</ul>
|
</ul>
|
||||||
|
</div>
|
||||||
</body>
|
</body>
|
||||||
</html>
|
</html>
|
||||||
|
Loading…
Reference in New Issue
Block a user