diff --git a/box-model1.html b/box-model1.html index 4dc0c72..b81ba3d 100644 --- a/box-model1.html +++ b/box-model1.html @@ -4,7 +4,9 @@ - + + + @@ -32,12 +34,17 @@ - - - The quickest of brown foxes. + + +

Box Model Visual

+
+
+ Inner DIV +
+
diff --git a/box-model2.html b/box-model2.html index 4dc0c72..740524a 100644 --- a/box-model2.html +++ b/box-model2.html @@ -4,7 +4,9 @@ - + + + @@ -12,6 +14,37 @@ + @@ -32,13 +65,21 @@ - - - The quickest of brown foxes. + + +

Box Model Visual

+
+
+ Inner DIV 1 +
+
+ Inner DIV 2 +
+
diff --git a/css/style.css b/css/style.css index d17d83a..a8d80f3 100644 --- a/css/style.css +++ b/css/style.css @@ -1,9 +1,7 @@ -body { - background-color: navy; -} +body {} object { height: 100vh; width: 100vh; -} +} \ No newline at end of file diff --git a/cssexercise2.html b/cssexercise2.html new file mode 100644 index 0000000..f204206 --- /dev/null +++ b/cssexercise2.html @@ -0,0 +1,49 @@ + + + + + + Title of the page + + + +

Box Model Visual

+
+
+ Inner div +
+ +
+ Inner div2 +
+
+ + + \ No newline at end of file diff --git a/login-interface.html b/login-interface.html new file mode 100644 index 0000000..df6eefe --- /dev/null +++ b/login-interface.html @@ -0,0 +1,35 @@ + + + + + + Login Interface + + + + +
+
+
+ +
+
+ +
+
+ +
+
+ +
+ +
+ +
+ + + \ No newline at end of file diff --git a/styles.css b/styles.css new file mode 100644 index 0000000..dd541cb --- /dev/null +++ b/styles.css @@ -0,0 +1,57 @@ +body { + background-color: lightgreen; + color: lightgray; + font-family: sans-serif; +} + +#login-frame { + + background-color: white; + border-radius: 2%; + box-shadow: 5px 5px 5px darkgrey; + width: 300px; + height: 400px; + position: fixed; + top: 200px; + left: 600px; + +} + +div div { + padding: 10px; + margin-top: 5%; +} + +form { + padding: 20px; + margin-left: 15%; +} + +input { + background-color: lightslategrey; + opacity: 75%; + height: 30px; + width: 150px; + font-size: large; + box-shadow: 3px 3px 3px darkgrey; + border-radius: 2%; + +} + +button { + font-size: large; + height: 30px; + width: 150px; + background-color: rgba(0, 153, 255, 0.952); + color: white; + box-shadow: 3px 3px 3px darkgrey; +} + +.login-info { + color: black; +} + +#footer { + margin-left: 10%; + color: orange; +} \ No newline at end of file