diff --git a/pfistersimon/._index.html b/pfistersimon/._index.html
new file mode 100644
index 0000000..e28521c
Binary files /dev/null and b/pfistersimon/._index.html differ
diff --git a/pfistersimon/._style.css b/pfistersimon/._style.css
new file mode 100644
index 0000000..e28521c
Binary files /dev/null and b/pfistersimon/._style.css differ
diff --git a/pfistersimon/index.html b/pfistersimon/index.html
new file mode 100644
index 0000000..579b4e7
--- /dev/null
+++ b/pfistersimon/index.html
@@ -0,0 +1,30 @@
+
+
+
+
+
+
+ Buttons
+
+
+
+
+
+
+
HTML Buttons
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/pfistersimon/style.css b/pfistersimon/style.css
new file mode 100644
index 0000000..2118879
--- /dev/null
+++ b/pfistersimon/style.css
@@ -0,0 +1,78 @@
+/* Baisic Layout */
+
+* {
+ box-sizing: border-box;
+ margin: 0 auto;
+ padding: 0;
+}
+
+/* Layout Style */
+
+body {
+ background-color: #ffbc7a;
+ text-align: center;
+}
+
+h1 {
+ margin: 20px 0 50px;
+}
+
+#btn-01 {
+ margin-bottom: 50px;
+ width: 50px;
+ height: 50px;
+ background-color: #00ffbb;
+ border-radius: 3px;
+
+
+}
+
+#btn-01:hover {
+ background-color: #ff0044;
+ font-weight: bold;
+}
+
+#btn-02 {
+ margin-bottom: 50px;
+ width: 100px;
+ height: 40px;
+ background-color: #000;
+ color: #fff;
+ font-weight: bold;
+ box-shadow: 3px 3px 3px 2px #fff;
+}
+
+#btn-02:active {
+ box-shadow: 3px 3px 3px 2px #f9f761;
+
+}
+
+#btn-03 {
+
+ width: 80px;
+ height: 80px;
+ border-radius: 50%;
+ background-color: blue;
+ color: #fff;
+}
+
+
+#btn-03:hover {
+ width: 50px;
+ height: 50px;
+ border-radius: 25%;
+ background-color: lightblue;
+
+}
+
+
+
+
+
+
+
+
+
+
+
+