diff --git a/html-forms/index.html b/html-forms/index.html index c7a70a6..7dd420a 100644 --- a/html-forms/index.html +++ b/html-forms/index.html @@ -11,8 +11,100 @@ /> - + -
+
+
+
+ Shipping Information +
+ + +
+
+ + +
+
+
+ + +
+
+ + +
+
+

Favorite Color:

+
+ + +
+
+ + +
+
+ + +
+
+
+

Choose your monster's features:

+
+ + +
+
+ + +
+
+ + +
+
+
+

Choose a font:

+ +
+
+ + +
+ + +
+
diff --git a/intro-to-media-queries/style.css b/intro-to-media-queries/style.css index e69de29..b0dda93 100644 --- a/intro-to-media-queries/style.css +++ b/intro-to-media-queries/style.css @@ -0,0 +1,9 @@ +p { + font-size: 14px; +} + +@media all and (min-width: 800px) { + p { + font-size: 24px; + } +}