60 lines
No EOL
941 B
HTML
60 lines
No EOL
941 B
HTML
<!doctype html>
|
|
<html>
|
|
<head>
|
|
|
|
<title>Nupa's Page</title>
|
|
|
|
<style>
|
|
|
|
html {
|
|
margin: 0 auto;
|
|
max-width: 80ch;
|
|
}
|
|
|
|
body {
|
|
background-image: url('magenta-tile-4.png');
|
|
background-size: 1.23em;
|
|
color: darkgray;
|
|
text-shadow: 2px 2px black;
|
|
font-family: sans-serif;
|
|
font-weight: bold;
|
|
max-width: 120ch;
|
|
|
|
}
|
|
|
|
h1, h3 {
|
|
text-align: center;
|
|
}
|
|
|
|
ul {
|
|
list-style: none;
|
|
padding-left: 0px;
|
|
}
|
|
|
|
li:before {
|
|
content: '●';
|
|
padding: 20px;
|
|
text-shadow: 2px 2px black;
|
|
}
|
|
|
|
</style>
|
|
</head>
|
|
<body>
|
|
|
|
<h1>Nupa's Page</h1>
|
|
|
|
<h3>A place to show off my projects.</h3>
|
|
|
|
<h2>Stuff I've made:</h2>
|
|
|
|
<ul>
|
|
<li>Portal ZZT</li>
|
|
<li>The ZZT Nanogame Collection</li>
|
|
<li>Collabyrinth, a ZZT collab</li>
|
|
<li>My 2007 Homepage and drawings</li>
|
|
<li>flistify: a script to bulk-resize images for f-list</li>
|
|
<li>braceless-javascript: a subset of javascript that looks like lisp.</li>
|
|
</ul>
|
|
|
|
</body>
|
|
</html> |