aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--README.md2
-rw-r--r--index.html5
-rw-r--r--style.css14
3 files changed, 19 insertions, 2 deletions
diff --git a/README.md b/README.md
index 1856117..973338d 100644
--- a/README.md
+++ b/README.md
@@ -1,2 +1,2 @@
-# Platreum Theme
+# Melreum Theme
A website theme for Andrew's website
diff --git a/index.html b/index.html
index 4c4c7f7..5cd31ec 100644
--- a/index.html
+++ b/index.html
@@ -4,9 +4,14 @@
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
+ <link href="https://fonts.googleapis.com/css?family=Play" rel="stylesheet">
+ <link href="./style.css" type="text/css" rel="stylesheet">
<title>Platreum</title>
</head>
<body>
<h1>Hello World!</h1>
+<button>This is a button</button>
+<script>
+</script>
</body>
</html> \ No newline at end of file
diff --git a/style.css b/style.css
index 0128cb7..b80a92b 100644
--- a/style.css
+++ b/style.css
@@ -15,9 +15,21 @@
limitations under the License.
*/
body {
- font-family: Arial, Helvetica, sans-serif;
+ font-family: 'Play', sans-serif;
padding: 0;
margin: 0;
background: #333;
color: white
}
+
+button {
+ background-color: #4CAF50;
+ font-family: 'Play', sans-serif;
+ border: none;
+ color: white;
+ padding: 15px 32px;
+ text-align: center;
+ text-decoration: none;
+ display: inline-block;
+ font-size: 16px;
+ } \ No newline at end of file