From c00430738829a215801e7a69b485d17db9387860 Mon Sep 17 00:00:00 2001 From: Divine Date: Mon, 26 Jan 2026 14:05:58 +0000 Subject: [PATCH 01/14] I changed the header for the body --- Wireframe/index.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Wireframe/index.html b/Wireframe/index.html index 0e014e535..e636f0563 100644 --- a/Wireframe/index.html +++ b/Wireframe/index.html @@ -10,7 +10,7 @@

Wireframe

- This is the default, provided code and no changes have been made yet. + This is a webpage developed by Divine.

From 6529e7109edee6e62cfa0a3d8c46b0c89bf88f73 Mon Sep 17 00:00:00 2001 From: Divine Date: Mon, 26 Jan 2026 14:29:20 +0000 Subject: [PATCH 02/14] Finished the content for article 2 and 3 --- Wireframe/index.html | 19 ++++++++++++++----- 1 file changed, 14 insertions(+), 5 deletions(-) diff --git a/Wireframe/index.html b/Wireframe/index.html index e636f0563..16d0a9ae8 100644 --- a/Wireframe/index.html +++ b/Wireframe/index.html @@ -14,14 +14,23 @@

Wireframe

-
+
+

Article One: The Purpose of a README file

-

Title

- Lorem ipsum dolor sit amet consectetur adipisicing elit. Quisquam, - voluptates. Quisquam, voluptates. + It displays an overview to the repository and provides instructions on how to use.

- Read more + Read more +
+ +
+

Article Three: What are branches in Git?

+

A branch is like a separate workspace where you can make changes and try new ideas without affecting the main project.

+ Read More
From c51d6cc984f0f5fcce989df424a24e362da586ee Mon Sep 17 00:00:00 2001 From: Divine Date: Mon, 26 Jan 2026 14:30:46 +0000 Subject: [PATCH 03/14] Added a hash instead of a link in html --- Wireframe/index.html | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Wireframe/index.html b/Wireframe/index.html index 16d0a9ae8..e30530720 100644 --- a/Wireframe/index.html +++ b/Wireframe/index.html @@ -20,17 +20,17 @@

Article One: The Purpose of a README file

It displays an overview to the repository and provides instructions on how to use.

- Read more + Read more

Article Three: What are branches in Git?

A branch is like a separate workspace where you can make changes and try new ideas without affecting the main project.

- Read More + Read More
From 77e55aa5b026fe9aedfd3151b60f0921c0d705a8 Mon Sep 17 00:00:00 2001 From: Divine Date: Thu, 5 Feb 2026 14:08:21 +0000 Subject: [PATCH 12/14] Updated wireframe --- Wireframe/style.css | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/Wireframe/style.css b/Wireframe/style.css index c56f53288..d1eaa4392 100644 --- a/Wireframe/style.css +++ b/Wireframe/style.css @@ -55,9 +55,12 @@ main { } footer { - position: fixed; - bottom: 0; text-align: center; + margin-top: calc(var(--space) * 2); + padding: var(--space); +} +header { + text-align:center; } /* ====== Articles Grid Layout ==== From a14c6334671c2299cc58d9a1de567b1626ba3d93 Mon Sep 17 00:00:00 2001 From: Divine Date: Thu, 5 Feb 2026 14:45:04 +0000 Subject: [PATCH 13/14] Reverted Form-Controls file to previou --- Form-Controls/index.html | 11 +---------- 1 file changed, 1 insertion(+), 10 deletions(-) diff --git a/Form-Controls/index.html b/Form-Controls/index.html index db6cbd241..65a866cdb 100644 --- a/Form-Controls/index.html +++ b/Form-Controls/index.html @@ -13,15 +13,6 @@

Product Pick

- - - - - - - - - -

Divine

+

By HOMEWORK SOLUTION

From 25124e7296b2dc145f417766a0ab9d428bd17bbf Mon Sep 17 00:00:00 2001 From: Divine Date: Fri, 6 Feb 2026 12:11:57 +0000 Subject: [PATCH 14/14] I added position: fixed, bottom: 0, and width: 100% to the footer styles, and added bottom padding to the body to prevent the footer from overlapping the main content. --- Wireframe/style.css | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/Wireframe/style.css b/Wireframe/style.css index d1eaa4392..7ab93988f 100644 --- a/Wireframe/style.css +++ b/Wireframe/style.css @@ -31,6 +31,7 @@ body { background: var(--paper); color: var(--ink); font: var(--font); + padding-bottom: calc(var(--space) * 4); } a { @@ -55,9 +56,15 @@ main { } footer { + position: fixed; + bottom: 0; + left: 0; + width: 100%; + text-align: center; - margin-top: calc(var(--space) * 2); padding: var(--space); + background: var(--paper); + border-top: var(--line); } header { text-align:center;