From 79c576a312eb095bbda1f33c69d8b92a07806e88 Mon Sep 17 00:00:00 2001
From: K8573 <k8573@student.jamk.fi>
Date: Sun, 24 Feb 2019 12:04:03 +0200
Subject: [PATCH] added site

---
 public/index.html | 18 ++++++++++++++++++
 public/style.css  | 43 +++++++++++++++++++++++++++++++++++++++++++
 2 files changed, 61 insertions(+)
 create mode 100644 public/index.html
 create mode 100644 public/style.css

diff --git a/public/index.html b/public/index.html
new file mode 100644
index 0000000..f48e01e
--- /dev/null
+++ b/public/index.html
@@ -0,0 +1,18 @@
+<!DOCTYPE html>
+<html>
+    <head>
+        <meta charset="utf-8">
+        <link rel="stylesheet" type="text/css" href="style.css">
+    </head>
+    <body>
+        <h1>TTOS0700 - Peliohjelmoinnin harkat</h1>
+        <h2>Niko Parviainen - K8573</h2>
+        <h2><a href="https://gitlab.labranet.jamk.fi/nikon-kurssirepot/ttos0700">Gitlab-repoon</a></h2>
+        <ul>
+            <li><a href="phaser-harkat/phaser-tutoriaali/index.html">Phaser-tutoriaali</a></li>
+            <li><a href="phaser-harkat/phaser-udemy/index.html">Udemyn kurssin demot</a></li>
+            <li></li>
+            <li></li>
+        </ul>
+    </body>
+</html>
\ No newline at end of file
diff --git a/public/style.css b/public/style.css
new file mode 100644
index 0000000..7854338
--- /dev/null
+++ b/public/style.css
@@ -0,0 +1,43 @@
+h1 {
+    font-family: sans-serif;
+    color: white;
+    background-color: rgba(250,250,250,0.3);
+    padding: 1vh;
+    width: 50%;
+    margin: auto;
+}
+
+h2 {
+    font-family: sans-serif;
+    color: white;
+    background-color: rgba(250,250,250,0.3);
+    padding: 1vh;
+    width: 50%;
+    margin: auto;
+}
+
+ul {
+    font-family: sans-serif;
+    background-color: rgba(250,250,250,0.3);
+    padding: 1vh;
+    margin: auto;
+    width: 50%;
+}
+
+body {
+    background-color: black;
+}
+
+a {
+    text-decoration: none;
+    color: darkblue;
+}
+
+a:hover {
+    color: skyblue;
+}
+
+li {
+    background-color: dimgray;
+    margin: 1vh;
+}
\ No newline at end of file
-- 
GitLab