Skip to content

Commit

Permalink
Add basic home page and style sheet
Browse files Browse the repository at this point in the history
  • Loading branch information
wcolburn committed Nov 18, 2021
1 parent 7277ff0 commit 5b75517
Show file tree
Hide file tree
Showing 3 changed files with 72 additions and 0 deletions.
Binary file added .DS_Store
Binary file not shown.
14 changes: 14 additions & 0 deletions index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<link href="screen.css" media="screen" rel="stylesheet" type="text/css" />
<title>YOUR NAME</title>
</head>
<body class="index">
<div id="main" role="main">
<h1>Your Name</h1>
<p>One sentence about what this is.</p>
</div>
</body>
</html>
58 changes: 58 additions & 0 deletions screen.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,58 @@
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
margin: 0;
padding: 0;
border: 0;
font-size: 100%;
font: inherit;
vertical-align: baseline; }

body {
line-height: 1; }

ol, ul {
list-style: none; }

table {
border-collapse: collapse;
border-spacing: 0; }

caption, th, td {
text-align: left;
font-weight: normal;
vertical-align: middle; }

q, blockquote {
quotes: none; }
q:before, q:after, blockquote:before, blockquote:after {
content: "";
content: none; }

a img {
border: none; }

article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section, summary {
display: block; }

body {
font-family: sans-serif;
color: #2a2a2a; }

a {
color: #0388a6; }
a:hover {
color: #009ce0; }

#main {
padding: 50px; }

0 comments on commit 5b75517

Please sign in to comment.