From 192cd4357f32ac7fae1ab844877ca3c009116085 Mon Sep 17 00:00:00 2001 From: "Arthur C." Date: Tue, 5 May 2026 22:04:24 +0100 Subject: [PATCH 01/14] Add form elements for user input 2 --- Form-Controls/index.html | 38 ++++++++++++++++++++++++++++++++++---- 1 file changed, 34 insertions(+), 4 deletions(-) diff --git a/Form-Controls/index.html b/Form-Controls/index.html index 74b591ffc..d0160a302 100644 --- a/Form-Controls/index.html +++ b/Form-Controls/index.html @@ -13,10 +13,40 @@

Product Pick

- - + + + +
+ + + + + +
+ + + + +
+ + + +
+ + + From 3d5bc294946266e5104e8a1668862ff266b42e5c Mon Sep 17 00:00:00 2001 From: "Arthur C." Date: Thu, 7 May 2026 15:18:33 +0100 Subject: [PATCH 04/14] Enhance wireframe with additional articles and sections Added new content and structure to the wireframe HTML. --- Wireframe/index.html | 81 ++++++++++++++++++++++++++++---------------- 1 file changed, 52 insertions(+), 29 deletions(-) diff --git a/Wireframe/index.html b/Wireframe/index.html index 0e014e535..d81de9d4f 100644 --- a/Wireframe/index.html +++ b/Wireframe/index.html @@ -1,33 +1,56 @@ - - - - Wireframe - - - -
-

Wireframe

-

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

-
-
-
- -

Title

-

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

- Read more -
-
-
-

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

-
+ + + +
+
+
+readme +

What is the purpose of a README file?

+

+A README file is a markdown document that provides an introduction and documentation for a project hosted on GitHub. It is usually placed in the root directory of a repository and is automatically displayed on the repository’s main page. + +Purpose of a README File + +Provides an overview of the project +Describes installation and setup steps +Documents usage instructions +List contributors and guidelines for contributing +Contains licensing information +Enhances project visibility and usability +

+Read More +
+
+ +
+
+ +

What is the purpose of a wireframe?

+

Wireframes are basic blueprints that help teams align on requirements, keeping UX design conversations focused and constructive. Think of your wireframe as the skeleton of your app, website, or other final product. Your wireframe shows the design team and stakeholders the bare-bones outlines of essential webpages, components, and features, including:

+ +Read More +
+ +
+
+ +

What is a branch in Git?

+

In Git, a branch is like a separate workspace where you can make changes and try new ideas without affecting the main project. Think of it as a "parallel universe" for your code. +

+Read more +
+ +
+
+

made in 2026

+
From b69824eb96634b9be69fe48d16bcaa9a118faa63 Mon Sep 17 00:00:00 2001 From: "Arthur C." Date: Fri, 8 May 2026 11:46:11 +0100 Subject: [PATCH 05/14] link to style.css Removed duplicate header section and added stylesheet link. --- Wireframe/index.html | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) diff --git a/Wireframe/index.html b/Wireframe/index.html index d81de9d4f..732987f06 100644 --- a/Wireframe/index.html +++ b/Wireframe/index.html @@ -1,14 +1,11 @@ - - +
From a98ea6859d558effcadfbfd9a99bc9694482efe7 Mon Sep 17 00:00:00 2001 From: "Arthur C." Date: Fri, 8 May 2026 11:58:30 +0100 Subject: [PATCH 06/14] Refactor CSS: Add styles and remove comments Removed starter comments and added styles for page header and article layout. --- Wireframe/style.css | 99 ++++++++++++++++++++++++--------------------- 1 file changed, 53 insertions(+), 46 deletions(-) diff --git a/Wireframe/style.css b/Wireframe/style.css index be835b6c7..e2ab50d98 100644 --- a/Wireframe/style.css +++ b/Wireframe/style.css @@ -1,21 +1,17 @@ -/* Here are some starter styles -You can edit these or replace them entirely -It's showing you a common way to organise CSS -And includes solutions to common problems -As well as useful links to learn more */ +.page-header{ +display:flex; +flex-direction:column; +align-items: center; +justify-content: center; +text-align: center; +min-height: 300px; +background-color: #f4f4f4; +} + +.page-header h1 { + margin-bottom: 10px; +} -/* ====== Design Palette ====== - This is our "design palette". - It sets out the colours, fonts, styles etc to be used in this design - At work, a designer will give these to you based on the corporate brand, but while you are learning - You can design it yourself if you like - Inspect the starter design with Devtools - Click on the colour swatches to see what is happening - I've put some useful CSS you won't have learned yet - For you to explore and play with if you are interested - 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); @@ -24,8 +20,7 @@ As well as useful links to learn more */ --line: 1px solid; --container: 1280px; } -/* ====== Base Elements ====== - General rules for basic HTML elements in any context */ + body { background: var(--paper); color: var(--ink); @@ -41,11 +36,8 @@ svg { width: 100%; object-fit: cover; } -/* ====== Site Layout ====== -Setting the overall rules for page regions -https://www.w3.org/WAI/tutorials/page-structure/regions/ -*/ -main { + +.main-wrapper { max-width: var(--container); margin: 0 auto calc(var(--space) * 4) auto; } @@ -54,14 +46,8 @@ footer { bottom: 0; text-align: center; } -/* ====== 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 { + +.main-wrapper { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space); @@ -69,21 +55,42 @@ main { grid-column: span 2; } } -/* ====== 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); - text-align: left; - display: grid; - grid-template-columns: var(--space) 1fr var(--space); - > * { - grid-column: 2/3; - } - > img { - grid-column: span 3; - } + display: flex; + flex-direction: column; + + height: 100%; + + padding: 0 var(--space) var(--space) var(--space); + + overflow:hidden; +} + +article img{ + width: calc(100% + (var(--space) *2)); + margin-left: calc(var(--space)* -1); + height: 250px; + object-fit: cover; + margin-bottom: var(--space); +} + +article h2 { + min-height: 5em; + display: flex; + align-items: center; /* Vertically centers the text if it's only one line */ + margin-top: 0; + margin-bottom: var(--space); +} + +article p{ + flex-grow: 1; + margin-bottom: var(--space); +} + +article a{ + margin-top: auto; + align-self: flex-start; } From 063668a42cc8ec5ea56dd5e796c38b5d749c8afd Mon Sep 17 00:00:00 2001 From: "Arthur C." Date: Fri, 8 May 2026 12:57:51 +0100 Subject: [PATCH 07/14] Update HTML structure and headings in index.html Correcting 5 mistakes --- Wireframe/index.html | 21 +++++++++++++-------- 1 file changed, 13 insertions(+), 8 deletions(-) diff --git a/Wireframe/index.html b/Wireframe/index.html index 732987f06..ae3fde383 100644 --- a/Wireframe/index.html +++ b/Wireframe/index.html @@ -1,16 +1,21 @@ + + Wireframe Guide + + + +
-readme -

What is the purpose of a README file?

+readme +

What is the purpose of a README file?

A README file is a markdown document that provides an introduction and documentation for a project hosted on GitHub. It is usually placed in the root directory of a repository and is automatically displayed on the repository’s main page. @@ -29,8 +34,8 @@

What is the purpose of a README file?

- -

What is the purpose of a wireframe?

+ +

What is the purpose of a wireframe?

Wireframes are basic blueprints that help teams align on requirements, keeping UX design conversations focused and constructive. Think of your wireframe as the skeleton of your app, website, or other final product. Your wireframe shows the design team and stakeholders the bare-bones outlines of essential webpages, components, and features, including:

Read More @@ -38,8 +43,8 @@

What is the purpose of a wireframe?

- -

What is a branch in Git?

+Example of a website wireframe +

What is a branch in Git?

In Git, a branch is like a separate workspace where you can make changes and try new ideas without affecting the main project. Think of it as a "parallel universe" for your code.

Read more From a88f1d43302056c3cc37aedea35f41c7551291ec Mon Sep 17 00:00:00 2001 From: "Arthur C." Date: Fri, 8 May 2026 14:50:52 +0100 Subject: [PATCH 08/14] Add stylesheet link into header, before
--- Wireframe/index.html | 20 +++++++++----------- 1 file changed, 9 insertions(+), 11 deletions(-) diff --git a/Wireframe/index.html b/Wireframe/index.html index ae3fde383..62a149b78 100644 --- a/Wireframe/index.html +++ b/Wireframe/index.html @@ -1,21 +1,22 @@ - + Wireframe Guide + -
+

Featured Article

readme -

What is the purpose of a README file?

+

What is the purpose of a README file?

A README file is a markdown document that provides an introduction and documentation for a project hosted on GitHub. It is usually placed in the root directory of a repository and is automatically displayed on the repository’s main page. @@ -32,23 +33,20 @@

What is the purpose of a README file?

-
- +

What is the purpose of a wireframe?

Wireframes are basic blueprints that help teams align on requirements, keeping UX design conversations focused and constructive. Think of your wireframe as the skeleton of your app, website, or other final product. Your wireframe shows the design team and stakeholders the bare-bones outlines of essential webpages, components, and features, including:

Read More
-
-Example of a website wireframe +Example of a website wireframe

What is a branch in Git?

In Git, a branch is like a separate workspace where you can make changes and try new ideas without affecting the main project. Think of it as a "parallel universe" for your code.

Read more -
From 256fd0ecf9161314432472a0fac5dedd13e75370 Mon Sep 17 00:00:00 2001 From: "Arthur C." Date: Fri, 8 May 2026 15:38:44 +0100 Subject: [PATCH 09/14] Refactor .main-wrapper first child outsides .main-wrapper --- Wireframe/style.css | 18 ++++++++++-------- 1 file changed, 10 insertions(+), 8 deletions(-) diff --git a/Wireframe/style.css b/Wireframe/style.css index e2ab50d98..e7e53f27c 100644 --- a/Wireframe/style.css +++ b/Wireframe/style.css @@ -38,23 +38,25 @@ svg { } .main-wrapper { + display: grid; + grid-template-columns: 1fr 1fr; + gap: var(--space); + max-width: var(--container); + margin: 0 auto calc(var(--space) * 4) auto; } + +.main-wrapper > *:first-child { + grid-column: span 2; +} + footer { position: fixed; bottom: 0; text-align: center; } -.main-wrapper { - display: grid; - grid-template-columns: 1fr 1fr; - gap: var(--space); - > *:first-child { - grid-column: span 2; - } -} article { border: var(--line); From 1f7fc0750a8b6cb98fae32bb978444aecb9c73f1 Mon Sep 17 00:00:00 2001 From: "Arthur C." Date: Fri, 8 May 2026 16:17:06 +0100 Subject: [PATCH 10/14] New branch trial --- Wireframe/index.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Wireframe/index.html b/Wireframe/index.html index 62a149b78..2727276f1 100644 --- a/Wireframe/index.html +++ b/Wireframe/index.html @@ -50,7 +50,7 @@

What is a branch in Git?

-

made in 2026

+

Smile made in 2026

From 389e25c2d16928a4f734d4f3f62564f11ad6156a Mon Sep 17 00:00:00 2001 From: "Arthur C." Date: Fri, 8 May 2026 16:21:45 +0100 Subject: [PATCH 11/14] New branch trial Real --- Wireframe/index.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Wireframe/index.html b/Wireframe/index.html index 2727276f1..0b8750612 100644 --- a/Wireframe/index.html +++ b/Wireframe/index.html @@ -50,7 +50,7 @@

What is a branch in Git?

-

Smile made in 2026

+

Smiles made in 2026

From 5eb90bcf76e935c8b09d3d74841f164d44126f49 Mon Sep 17 00:00:00 2001 From: "Arthur C." Date: Fri, 8 May 2026 16:23:41 +0100 Subject: [PATCH 12/14] New branch trial CSS --- Wireframe/style.css | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Wireframe/style.css b/Wireframe/style.css index e7e53f27c..03d48ffdd 100644 --- a/Wireframe/style.css +++ b/Wireframe/style.css @@ -14,7 +14,7 @@ background-color: #f4f4f4; :root { --paper: oklch(7 0 0); - --ink: color-mix(in oklab, var(--color) 5%, black); + --ink: color-mix(in oklab, var(--color) 5%, rgb(16, 15, 15)); --font: 100%/1.5 system-ui; --space: clamp(6px, 6px + 2vw, 15px); --line: 1px solid; From f643ddb2d7ade059e0fad65db9b950c0e7c6fb48 Mon Sep 17 00:00:00 2001 From: "Arthur C." Date: Sat, 9 May 2026 14:10:49 +0100 Subject: [PATCH 13/14] update original form controls --- Form-Controls/index.html | 51 +++++++--------------------------------- 1 file changed, 8 insertions(+), 43 deletions(-) diff --git a/Form-Controls/index.html b/Form-Controls/index.html index 518026942..74b591ffc 100644 --- a/Form-Controls/index.html +++ b/Form-Controls/index.html @@ -1,11 +1,11 @@ - - + + My form exercise - - + +
@@ -13,39 +13,10 @@

Product Pick

- - - - -
- - - - - -
- - - - -
- - - - + +
@@ -53,10 +24,4 @@

Product Pick

By HOMEWORK SOLUTION

- -
- -

By HOMEWORK SOLUTION

-
- From e4b2713aa6073cfa5aa4aef0798a60305828e682 Mon Sep 17 00:00:00 2001 From: Arthur <> Date: Mon, 18 May 2026 16:46:42 +0100 Subject: [PATCH 14/14] Read me button comes back --- Wireframe/index.html | 119 +++++++++++++++++++-------------- Wireframe/short link image.png | Bin 0 -> 19353 bytes 2 files changed, 67 insertions(+), 52 deletions(-) create mode 100644 Wireframe/short link image.png diff --git a/Wireframe/index.html b/Wireframe/index.html index 0b8750612..4e41528ac 100644 --- a/Wireframe/index.html +++ b/Wireframe/index.html @@ -1,56 +1,71 @@ + Wireframe Guide - - - - - -
-
-

Featured Article

-
-readme -

What is the purpose of a README file?

-

-A README file is a markdown document that provides an introduction and documentation for a project hosted on GitHub. It is usually placed in the root directory of a repository and is automatically displayed on the repository’s main page. - -Purpose of a README File - -Provides an overview of the project -Describes installation and setup steps -Documents usage instructions -List contributors and guidelines for contributing -Contains licensing information -Enhances project visibility and usability -

-Read More -
-
- -
- -

What is the purpose of a wireframe?

-

Wireframes are basic blueprints that help teams align on requirements, keeping UX design conversations focused and constructive. Think of your wireframe as the skeleton of your app, website, or other final product. Your wireframe shows the design team and stakeholders the bare-bones outlines of essential webpages, components, and features, including:

- -Read More -
- -
-Example of a website wireframe -

What is a branch in Git?

-

In Git, a branch is like a separate workspace where you can make changes and try new ideas without affecting the main project. Think of it as a "parallel universe" for your code. -

-Read more -
-
-
-

Smiles made in 2026

-
- - + + + + + + +
+
+

Featured Article

+
+ readme +

What is the purpose of a README file?

+

+ A README file is a markdown document that provides an introduction and documentation for a project hosted on + GitHub. It is usually placed in the root directory of a repository and is automatically displayed on the + repository’s main page. +

+ +

Other Purposes of a README File

+
    +
  • Provides an overview of the project
  • +
  • Describes installation and setup
  • +
  • Documents usage instructions
  • +
  • List contributors and guidelines for contributing
  • +
  • Contains licensing information
  • +
  • Enhances project visibility and usability
  • +
+ +

Read + More

+
+ +
+
+ +
+ Wireframe Of A Website +

What is the purpose of a wireframe?

+

Wireframes are basic blueprints that help teams align on requirements, keeping UX design conversations focused + and constructive. Think of your wireframe as the skeleton of your app, website, or other final product. Your + wireframe shows the design team and stakeholders the bare-bones outlines of essential webpages, components, and + features, including:

+ + Read More +
+ +
+ Branch in Git +

What is a branch in Git?

+

In Git, a branch is like a separate workspace where you can make changes and try new ideas without affecting + the main project. Think of it as a " parallel universe " for your code.

+ Read more +
+
+
+

Smiles made in 2026

+
+ + + \ No newline at end of file diff --git a/Wireframe/short link image.png b/Wireframe/short link image.png new file mode 100644 index 0000000000000000000000000000000000000000..a3b4491257eb41c2ae475d30b70046a8a1d8e224 GIT binary patch literal 19353 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

8?vIhy3e&F-q1reCd`X8p544Pr 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