From 192cd4357f32ac7fae1ab844877ca3c009116085 Mon Sep 17 00:00:00 2001 From: "Arthur C." Date: Tue, 5 May 2026 22:04:24 +0100 Subject: [PATCH 1/8] 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 4/8] 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 5/8] 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 6/8] 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 7/8] 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 8/8] 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 -