From 038b104484c0d7a33d4dd2eb1057ae7b38b85a24 Mon Sep 17 00:00:00 2001
From: ZeqeB <85196913+ezebellino@users.noreply.github.com>
Date: Tue, 20 Aug 2024 03:12:21 +0000
Subject: [PATCH 1/2] Initial commit
From 887b28c947b0a1c5c14e449e99551967b3eee392 Mon Sep 17 00:00:00 2001
From: ZeqeB <85196913+ezebellino@users.noreply.github.com>
Date: Tue, 20 Aug 2024 03:12:21 +0000
Subject: [PATCH 2/2] Pending changes exported from your codespace
---
.learn/resets/02-hello-world/index.html | 1 +
.learn/resets/03-Type-Radio/index.html | 16 ++++
.../04-fieldsets-labels-and-styles/index.html | 32 ++++++++
.../04-fieldsets-labels-and-styles/style.css | 0
.learn/resets/05-HTML-five-forms/index.html | 36 +++++++++
.learn/resets/05-HTML-five-forms/style.css | 36 +++++++++
.../06-Replicate-simple-form/index.html | 22 ++++++
exercises/02-hello-world/index.html | 9 +++
exercises/03-Type-Radio/index.html | 51 ++++++++----
.../04-fieldsets-labels-and-styles/style.css | 29 +++++++
exercises/05-HTML-five-forms/index.html | 66 ++++++++--------
exercises/06-Replicate-simple-form/index.html | 79 +++++++++++++++----
12 files changed, 312 insertions(+), 65 deletions(-)
create mode 100644 .learn/resets/02-hello-world/index.html
create mode 100644 .learn/resets/03-Type-Radio/index.html
create mode 100644 .learn/resets/04-fieldsets-labels-and-styles/index.html
create mode 100644 .learn/resets/04-fieldsets-labels-and-styles/style.css
create mode 100644 .learn/resets/05-HTML-five-forms/index.html
create mode 100644 .learn/resets/05-HTML-five-forms/style.css
create mode 100644 .learn/resets/06-Replicate-simple-form/index.html
diff --git a/.learn/resets/02-hello-world/index.html b/.learn/resets/02-hello-world/index.html
new file mode 100644
index 0000000..950dfeb
--- /dev/null
+++ b/.learn/resets/02-hello-world/index.html
@@ -0,0 +1 @@
+
diff --git a/.learn/resets/03-Type-Radio/index.html b/.learn/resets/03-Type-Radio/index.html
new file mode 100644
index 0000000..cb41ad1
--- /dev/null
+++ b/.learn/resets/03-Type-Radio/index.html
@@ -0,0 +1,16 @@
+
+
+
+
+
+
+ 4Geeks Academy
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/.learn/resets/04-fieldsets-labels-and-styles/index.html b/.learn/resets/04-fieldsets-labels-and-styles/index.html
new file mode 100644
index 0000000..4c4bb16
--- /dev/null
+++ b/.learn/resets/04-fieldsets-labels-and-styles/index.html
@@ -0,0 +1,32 @@
+
+
+
+
+
+ 4Geeks Academy
+
+
+
+
+
+
diff --git a/.learn/resets/04-fieldsets-labels-and-styles/style.css b/.learn/resets/04-fieldsets-labels-and-styles/style.css
new file mode 100644
index 0000000..e69de29
diff --git a/.learn/resets/05-HTML-five-forms/index.html b/.learn/resets/05-HTML-five-forms/index.html
new file mode 100644
index 0000000..4d8a92c
--- /dev/null
+++ b/.learn/resets/05-HTML-five-forms/index.html
@@ -0,0 +1,36 @@
+
+
+
+
+
+4Geeks Academy
+
+
+
+
+
+
diff --git a/.learn/resets/05-HTML-five-forms/style.css b/.learn/resets/05-HTML-five-forms/style.css
new file mode 100644
index 0000000..feb5e9c
--- /dev/null
+++ b/.learn/resets/05-HTML-five-forms/style.css
@@ -0,0 +1,36 @@
+body {
+ font-family: "Lato", sans-serif;
+}
+
+form {
+ display: inline-block;
+}
+
+fieldset {
+ border: none;
+ margin: 0;
+ padding: 10px 0;
+ font-weight: 800;
+}
+
+label {
+ font-weight: 400;
+}
+
+input[type="text"],
+input[type="email"],
+input[type="tel"],
+input[type="url"] {
+ border: none;
+ border-bottom: 1px solid black;
+ font-size: 16px;
+}
+
+input[type="submit"] {
+ cursor: pointer;
+ border: none;
+ padding: 10px;
+ background-color: #f65252;
+ color: white;
+ width: 100%;
+}
diff --git a/.learn/resets/06-Replicate-simple-form/index.html b/.learn/resets/06-Replicate-simple-form/index.html
new file mode 100644
index 0000000..b6db52a
--- /dev/null
+++ b/.learn/resets/06-Replicate-simple-form/index.html
@@ -0,0 +1,22 @@
+
+
+
+
+
+
+ 4Geeks Academy
+
+
+
+
+
+
+
+
+
diff --git a/exercises/02-hello-world/index.html b/exercises/02-hello-world/index.html
index 950dfeb..df31773 100644
--- a/exercises/02-hello-world/index.html
+++ b/exercises/02-hello-world/index.html
@@ -1 +1,10 @@
+
+
+
+
+
+ Hello World
+
+
+
diff --git a/exercises/03-Type-Radio/index.html b/exercises/03-Type-Radio/index.html
index cb41ad1..f1d9bbe 100644
--- a/exercises/03-Type-Radio/index.html
+++ b/exercises/03-Type-Radio/index.html
@@ -1,16 +1,37 @@
-
-
-
-
-
- 4Geeks Academy
-
-
-
-
-
-
-
\ No newline at end of file
+
+
+
+
+ 4Geeks Academy
+
+
+
+
+
diff --git a/exercises/04-fieldsets-labels-and-styles/style.css b/exercises/04-fieldsets-labels-and-styles/style.css
index e69de29..a53f19a 100644
--- a/exercises/04-fieldsets-labels-and-styles/style.css
+++ b/exercises/04-fieldsets-labels-and-styles/style.css
@@ -0,0 +1,29 @@
+body {
+ font-family: "Lato", sans-serif;
+}
+
+form {
+ display: inline-block;
+}
+fieldset {
+ border: none;
+ margin: none;
+ padding: 10px 0px;
+ font-weight: 800;
+}
+label {
+ font-weight: 400;
+}
+input[type="text"] {
+ border: none;
+ border-bottom: 1px solid black;
+ font-size: 16px;
+}
+input[type="submit"] {
+ cursor: pointer;
+ border: none;
+ padding: 10px;
+ background-color: #f65252;
+ color: white;
+ width: 100%;
+}
diff --git a/exercises/05-HTML-five-forms/index.html b/exercises/05-HTML-five-forms/index.html
index 4d8a92c..c8d9a6d 100644
--- a/exercises/05-HTML-five-forms/index.html
+++ b/exercises/05-HTML-five-forms/index.html
@@ -1,36 +1,36 @@
-
-
-
-4Geeks Academy
-
-
-
-
-
+
+
+
+ 4Geeks Academy
+
+
+
+
+
diff --git a/exercises/06-Replicate-simple-form/index.html b/exercises/06-Replicate-simple-form/index.html
index b6db52a..961ac5e 100644
--- a/exercises/06-Replicate-simple-form/index.html
+++ b/exercises/06-Replicate-simple-form/index.html
@@ -1,22 +1,67 @@
+
+
+
+ 4Geeks Academy
-
-
-
- 4Geeks Academy
-
-
-
-
-
-
-
+
+
+
+
+