1
0
mirror of https://github.com/fadden/6502bench.git synced 2024-05-31 22:41:37 +00:00

Placeholder

This commit is contained in:
Andy McFadden 2018-09-27 15:13:25 -07:00
parent e49915a0a0
commit ed5988b8a4
2 changed files with 45 additions and 1 deletions

View File

@ -1 +1,27 @@
My GitHub Page
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta content="text/html; charset=utf-8" http-equiv="Content-Type" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<link href="main.css" rel="stylesheet" type="text/css" />
<title>6502bench Tools</title>
</head>
<body>
<div id=content>
<h1>6502bench Tools</h1>
<p>(coming soon)</p>
<p>Project page: https://github.com/fadden/6502bench/"</p>
</div>
<div id=footer>
<hr>
<p>Copyright 2018 faddenSoft</p>
</div>
</body>
</html>

18
main.css Normal file
View File

@ -0,0 +1,18 @@
/*
* Overall look and feel.
*/
body {
font-family: Arial, Helvetica, sans-serif;
padding: 0px;
margin: 0px;
}
#content {
/* top right bottom left */
margin: 20px 10px 10px 10px;
/*position: relative;*/
}
#footer {
/* top right bottom left */
margin: 20px 10px 10px 10px;
/*position: relative;*/
}