diff --git a/index.html b/index.html
index 081ccd4..4b3339a 100644
--- a/index.html
+++ b/index.html
@@ -10,7 +10,7 @@
-
+
@@ -19,6 +19,33 @@ Main Heading
sub heading
Hello, World!
+
+
+
+
+ | Name |
+ Info |
+
+
+
+
+ | Steve |
+ Apple |
+
+
+ | Bill |
+ Microsoft |
+
+
+ Table footer |
+
+
+
+ Radio Buttons
+
diff --git a/style.css b/style.css
index 8b13789..7218417 100644
--- a/style.css
+++ b/style.css
@@ -1 +1,16 @@
+th{
+ background-color: blueviolet;
+ color:white;
+ font-weight: bold;
+}
+table, th, tr, td, tfoot{
+ border-collapse: collapse;
+ border:1px solid black;
+
+}
+td, th{
+ width:300px;
+ text-align: center;
+}
+tr:nth-child(even) {background-color: #f2f2f2;}