From 57763b26200f8562c89a0d077e3ea6650395d7b3 Mon Sep 17 00:00:00 2001 From: UbunMen Date: Wed, 17 Sep 2025 18:29:21 +0100 Subject: [PATCH 01/10] Update header title to 'Wireframe Project' --- Wireframe/index.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Wireframe/index.html b/Wireframe/index.html index 0e014e535..862df7480 100644 --- a/Wireframe/index.html +++ b/Wireframe/index.html @@ -3,7 +3,7 @@ - Wireframe + Wireframe Project From 2ee17a90972cc5e7a6ae81a0da6d570f347f7323 Mon Sep 17 00:00:00 2001 From: UbunMen Date: Wed, 17 Sep 2025 18:31:38 +0100 Subject: [PATCH 02/10] Update the paragraph --- Wireframe/index.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Wireframe/index.html b/Wireframe/index.html index 862df7480..6ec4b7bf3 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 the default, provided code and no changes have been made yet, except the heading.

From f3099bc5f0b6909d1131cf383b6a7aeeb975b2b9 Mon Sep 17 00:00:00 2001 From: UbunMen Date: Wed, 17 Sep 2025 23:17:38 +0100 Subject: [PATCH 03/10] Added paragraph content --- Wireframe/index.html | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Wireframe/index.html b/Wireframe/index.html index 6ec4b7bf3..bb6b8ef41 100644 --- a/Wireframe/index.html +++ b/Wireframe/index.html @@ -10,7 +10,8 @@

Wireframe

- This is the default, provided code and no changes have been made yet, except the heading. + This is the default, provided code and no changes have been made yet. + Yes, it is a default, we will provide code later.

From df67e5551b4de552e5c3dcb2bcf6c435eb3cb162 Mon Sep 17 00:00:00 2001 From: UbunMen Date: Wed, 24 Sep 2025 15:07:52 +0100 Subject: [PATCH 04/10] Modified, the html and css files and designed a page titled wireframe. --- Wireframe/index.html | 59 ++++++++++++------ Wireframe/style.css | 145 +++++++++++++++++++++++++------------------ 2 files changed, 122 insertions(+), 82 deletions(-) diff --git a/Wireframe/index.html b/Wireframe/index.html index bb6b8ef41..e8b079d6b 100644 --- a/Wireframe/index.html +++ b/Wireframe/index.html @@ -6,29 +6,48 @@ Wireframe Project +

Wireframe

-

- This is the default, provided code and no changes have been made yet. - Yes, it is a default, we will provide code later. -

+

This page explains important elements in designing Webpages.

-
+ +
+ +
+ Featured article +

What is the purpose of a README file?

+

README Files are a common way to document the contents and structure of a folder or a dataset so that a researcher can locate the information they need.

+ +
+ + + +
+
- -

Title

-

- Lorem ipsum dolor sit amet consectetur adipisicing elit. Quisquam, - voluptates. Quisquam, voluptates. -

- Read more + Article 1 +

What is the purpose of a wireframe?

+

The primary purpose of a wireframe is to serve as a blueprint for a digital product, such as a website or mobile app.

+
-
-
-

- This is the default, provided code and no changes have been made yet. -

-
- - + +
+ Article 2 +

What is a branch in Git?

+

A branch represents an independent line of development. Branches serve as an abstraction for the edit/stage/commit process. You can think of them as a way to request a brand new working directory, staging area, and project history.

+ +
+ + + +
+ +
+

For Further Information Please Follow me on GitHub.

+
+ + + + \ No newline at end of file diff --git a/Wireframe/style.css b/Wireframe/style.css index be835b6c7..3d42815ad 100644 --- a/Wireframe/style.css +++ b/Wireframe/style.css @@ -16,74 +16,95 @@ As well as useful links to learn more */ https://web.dev/articles/min-max-clamp https://scrimba.com/learn-css-variables-c026 ====== Design Palette ====== */ -:root { - --paper: oklch(7 0 0); - --ink: color-mix(in oklab, var(--color) 5%, black); - --font: 100%/1.5 system-ui; - --space: clamp(6px, 6px + 2vw, 15px); - --line: 1px solid; - --container: 1280px; -} -/* ====== Base Elements ====== - General rules for basic HTML elements in any context */ body { - background: var(--paper); - color: var(--ink); - font: var(--font); + font-family: Arial, sans-serif; + margin: 0; + padding: 0; + line-height: 1.6; } -a { - padding: var(--space); - border: var(--line); - max-width: fit-content; + +/* Header section */ +header { + padding: 20px; + text-align: center; + background: #d6d8e7; } -img, -svg { - width: 100%; - object-fit: cover; + +header h1 { + margin: 0; + font-size: 2em; } -/* ====== Site Layout ====== -Setting the overall rules for page regions -https://www.w3.org/WAI/tutorials/page-structure/regions/ -*/ -main { - max-width: var(--container); - margin: 0 auto calc(var(--space) * 4) auto; + +header p { + font-size: 1em; + color: #555; } -footer { - position: fixed; - bottom: 0; - text-align: center; + +/* Main Article */ +.main-article { + max-width: 1200px; + margin: 20px auto; + text-align: left; + padding: 15px; + border: 1px solid #ddd; + border-radius: 5px; +} + +.main-article img { + width: 100%; + height: auto; + display: block; + border-radius: 5px; +} + +.featured-article h2 { + margin-top: 10px; } -/* ====== Articles Grid Layout ==== -Setting the rules for how articles are placed in the main element. -Inspect this in Devtools and click the "grid" button in the Elements view -Play with the options that come up. -https://developer.chrome.com/docs/devtools/css/grid -https://gridbyexample.com/learn/ -*/ -main { - display: grid; - grid-template-columns: 1fr 1fr; - gap: var(--space); - > *:first-child { - grid-column: span 2; - } + +/* Article Grid the remaining two articles organized in a column like structure*/ +.article-grid { + display: flex; + justify-content: center; + gap: 20px; + margin: 20px; + flex-wrap: wrap; } -/* ====== Article Layout ====== -Setting the rules for how elements are placed in the article. -Now laying out just the INSIDE of the repeated card/article design. -Keeping things orderly and separate is the key to good, simple CSS. -*/ -article { - border: var(--line); - padding-bottom: var(--space); + +.article-grid article { + flex: 1 1 300px; + max-width: 590px; + border: 1px solid #ddd; + border-radius: 5px; + padding: 10px; text-align: left; - display: grid; - grid-template-columns: var(--space) 1fr var(--space); - > * { - grid-column: 2/3; - } - > img { - grid-column: span 3; - } +} + +.article-grid img { + width: 100%; + height: auto; + border-radius: 5px; +} + +/* Buttons */ +button { + margin-top: 10px; + padding: 10px 20px; + background: #333; + color: #fff; + border: none; + border-radius: 3px; + cursor: pointer; +} + +button:hover { + background: #555; +} + +/* Footer */ +footer { + background: #d9d9e9; + padding: 15px; + font-size: 18px; + text-align: center; + color: #333; } From 8ad7e8f5d7e37c257ea39bcaa972d5d24976bf48 Mon Sep 17 00:00:00 2001 From: UbunMen Date: Wed, 24 Sep 2025 15:14:37 +0100 Subject: [PATCH 05/10] changed the footer info --- Wireframe/index.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Wireframe/index.html b/Wireframe/index.html index e8b079d6b..9933d6e8f 100644 --- a/Wireframe/index.html +++ b/Wireframe/index.html @@ -45,7 +45,7 @@

What is a branch in Git?

-

For Further Information Please Follow me on GitHub.

+

For new codes and styles please Follow me on GitHub.

From ae20863d8bc939281fccac4d15b148f9a3e6c4e1 Mon Sep 17 00:00:00 2001 From: UbunMen Date: Wed, 24 Sep 2025 19:32:10 +0100 Subject: [PATCH 06/10] Made the footer fixed to viewport --- Wireframe/style.css | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/Wireframe/style.css b/Wireframe/style.css index 3d42815ad..b393c6b24 100644 --- a/Wireframe/style.css +++ b/Wireframe/style.css @@ -107,4 +107,11 @@ footer { font-size: 18px; text-align: center; color: #333; + + /* Make footer fixed to the viewport */ + + position: fixed; + bottom: 0; + left: 0; + width: 100% } From 947da291f467ade5978d7f13890578194ebfec80 Mon Sep 17 00:00:00 2001 From: UbunMen Date: Sat, 27 Sep 2025 21:24:40 +0100 Subject: [PATCH 07/10] Designed a form submission page --- Form-Controls/index.html | 44 ++++++++++++++++++++++++++++++++-------- 1 file changed, 36 insertions(+), 8 deletions(-) diff --git a/Form-Controls/index.html b/Form-Controls/index.html index 65a866cdb..d014cad9e 100644 --- a/Form-Controls/index.html +++ b/Form-Controls/index.html @@ -12,16 +12,44 @@

Product Pick

-
- - -
+
+ + + + + + + + + +
+ Choose a colour: + + + +
+ + + + + + + +
+
- -

By HOMEWORK SOLUTION

+ +

By COTTON SOLUTIONS, Ltd

+ From d6536fd9c4b23a4286577bb231eebde2bf738931 Mon Sep 17 00:00:00 2001 From: UbunMen Date: Fri, 3 Oct 2025 17:14:58 +0100 Subject: [PATCH 08/10] Footer made static --- Wireframe/style.css | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/Wireframe/style.css b/Wireframe/style.css index b393c6b24..6bd9aa569 100644 --- a/Wireframe/style.css +++ b/Wireframe/style.css @@ -100,6 +100,11 @@ button:hover { background: #555; } +/* Add padding to the bottom of the main content */ +main { + padding-bottom: 60px; /* match or exceed footer height */ +} + /* Footer */ footer { background: #d9d9e9; @@ -110,8 +115,8 @@ footer { /* Make footer fixed to the viewport */ - position: fixed; + position: static; bottom: 0; left: 0; - width: 100% + width: 100%; } From dd3ce8313df1396303674d5faf6321091b1cfa79 Mon Sep 17 00:00:00 2001 From: UbunMen Date: Sat, 4 Oct 2025 15:12:28 +0100 Subject: [PATCH 09/10] Added height attribute and fixed it tobe 650px --- Wireframe/style.css | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Wireframe/style.css b/Wireframe/style.css index 6bd9aa569..b48f27642 100644 --- a/Wireframe/style.css +++ b/Wireframe/style.css @@ -77,6 +77,7 @@ header p { border-radius: 5px; padding: 10px; text-align: left; + height: 650px; } .article-grid img { @@ -115,7 +116,7 @@ footer { /* Make footer fixed to the viewport */ - position: static; + position: fixed; bottom: 0; left: 0; width: 100%; From 97281a14bb883995a61176a6b2b4b67b1ce78d5c Mon Sep 17 00:00:00 2001 From: UbunMen Date: Sat, 4 Oct 2025 15:15:02 +0100 Subject: [PATCH 10/10] Fixed the hieght to be 64px --- Wireframe/style.css | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Wireframe/style.css b/Wireframe/style.css index b48f27642..8fb60cc68 100644 --- a/Wireframe/style.css +++ b/Wireframe/style.css @@ -77,7 +77,7 @@ header p { border-radius: 5px; padding: 10px; text-align: left; - height: 650px; + height: 640px; } .article-grid img {