diff --git a/index.html b/index.html
index a7de4db5768b49072ce921f3391134492a5f29e5..627eae048fbfdb1cd449b3ca371b3f633207d0d0 100644
--- a/index.html
+++ b/index.html
@@ -1,8 +1,16 @@
 <html>
-<head>
-  <title>Home</title>
-</head>
-<body>
-  <h1>This is a test page :)</h1>
-</body>
+  
+  <head>
+    <meta charset="utf-8">
+    <meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=yes">
+    
+    <link rel="stylesheet" href="client.css" />
+    <title>Home</title>
+    
+  </head>
+  
+  <body>
+    <h1 class="my-class">This is a test page :)</h1>
+  </body>
+  
 </html>
diff --git a/style.css b/style.css
new file mode 100644
index 0000000000000000000000000000000000000000..8b04121aeed75b6396f83bca8f5672d4c9d9086f
--- /dev/null
+++ b/style.css
@@ -0,0 +1,3 @@
+.my-class {
+    color: red;
+}