diff options
-rw-r--r-- | about.html | 1 | ||||
-rw-r--r-- | index.html | 11 | ||||
-rw-r--r-- | projects.html | 1 | ||||
-rw-r--r-- | styles.css | 9 |
4 files changed, 17 insertions, 5 deletions
@@ -8,6 +8,7 @@ <meta name="viewport" content="width=device-width, initial-scale=1" /> <link rel="apple-touch-icon" href="/apple-touch-icon.png" /> + <link rel="stylesheet" href="styles.css" /> </head> <body> <h1>About Me</h1> @@ -8,15 +8,16 @@ <meta name="viewport" content="width=device-width, initial-scale=1" /> <link rel="apple-touch-icon" href="/apple-touch-icon.png" /> + <link rel="stylesheet" href="styles.css" /> </head> <body> - <h1>jacob janzen's website</h1> + <h1>Jacob Janzen's website</h1> <p> This website is designed to be as minimal as possible. It's written in - HTML with minimal CSS and JavaScript where needed. There is no graphic - design, no frameworks, and no bloat. It's currently hosted on GitHub - pages, but I intend to eventually move it over to a self-hosted server - when I get the hardware (this is years away). + HTML with minimal CSS and JavaScript where needed. There are no + frameworks, and no bloat. It's currently hosted on GitHub pages, but I + intend to eventually move it over to a self-hosted server when I get the + hardware (this is years away). </p> <h3>Links</h3> <ul> diff --git a/projects.html b/projects.html index 6aa01fe..d832220 100644 --- a/projects.html +++ b/projects.html @@ -8,6 +8,7 @@ <meta name="viewport" content="width=device-width, initial-scale=1" /> <link rel="apple-touch-icon" href="/apple-touch-icon.png" /> + <link rel="stylesheet" href="styles.css" /> </head> <body> <h1>Projects</h1> diff --git a/styles.css b/styles.css new file mode 100644 index 0000000..d1ef847 --- /dev/null +++ b/styles.css @@ -0,0 +1,9 @@ +body { + font-family: Courier; + width: 700px; + margin: auto; +} + +p { + font-family: Courier; +} |