diff options
author | Ben Burwell <bburwell1@gmail.com> | 2014-03-20 16:17:19 -0400 |
---|---|---|
committer | Ben Burwell <bburwell1@gmail.com> | 2014-03-20 16:17:19 -0400 |
commit | cdbd0a5ff3e815c01cbf4891d2bc0cd418720fab (patch) | |
tree | 9716b7f2bc983576f6dc293c6f44a699c18ad0cd |
Init
-rw-r--r-- | index.html | 65 |
1 files changed, 65 insertions, 0 deletions
diff --git a/index.html b/index.html new file mode 100644 index 0000000..97115b3 --- /dev/null +++ b/index.html @@ -0,0 +1,65 @@ +<!DOCTYPE html> +<html> + <head> + <title>Ben Burwell</title> + <script type="text/javascript" src="//use.typekit.net/xgd2xxh.js"></script> + <script type="text/javascript">try{Typekit.load();}catch(e){}</script> + <style type="text/css"> + * { + padding: 0; + margin: 0; + } + + body { + font-family: 'myriad-pro'; + font-size: 16px; + color: rgb(0, 0, 0); + background-color: rgb(250, 250, 250); + margin-left: auto; + margin-right: auto; + font-weight: normal; + } + + .content { + width: 40em; + margin-left: auto; + margin-right: auto; + text-align: center; + } + + .title-block { + border-bottom: 2px solid rgb(0, 0, 0); + margin-left: auto; + margin-right: auto; + padding: 1em 1em 0.5em 1em; + margin: 0 1em 1em 1em; + } + + h1 { + font-size: 2em; + font-weight: bold; + } + + a { + color: rgb(68, 126, 173); + } + + .caption { + font-family: 'minion-pro'; + font-style: italic; + padding: 0.5em; + font-size: 1.2em; + } + + </style> + </head> + <body> + <div class="content"> + <div class="title-block"> + <h1>Ben Burwell</h1> + <p class="caption">Designer & Developer</p> + </div> + <p>Please visit my website, <a href="http://www.benburwell.com/">www.benburwell.com</a>.</p> + </div> + </body> +</html> |