From 37c725747204a638c869976b3862396a00b36392 Mon Sep 17 00:00:00 2001 From: ZiadMakkawi Date: Fri, 23 Jan 2026 19:49:50 +0000 Subject: [PATCH 1/2] Added content --- Wireframe/index.html | 79 ++++++++++++++++++++++++++++---------------- 1 file changed, 50 insertions(+), 29 deletions(-) diff --git a/Wireframe/index.html b/Wireframe/index.html index 0e014e535..8dc55ff33 100644 --- a/Wireframe/index.html +++ b/Wireframe/index.html @@ -1,33 +1,54 @@ - - - - - - Wireframe - - - -
-

Wireframe

+ +
+

Web Development Fundamentals

+

+ An introduction to README files, wireframes, and Git branches. +

+
+ +
+
+ Document icon representing a README file +

What is a README file?

- This is the default, provided code and no changes have been made yet. + A README file explains what a project does, how to set it up, and how to + use or contribute to it. It is usually the first thing people read when + they open a repository.

-
-
-
- -

Title

-

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

- Read more -
-
- - - + + Learn more about wireframes + + + +
+ Diagram showing Git branches +

What is a Git branch?

+

+ A Git branch is a separate line of development that allows developers to + work on features or fixes without affecting the main codebase until the + changes are ready. +

+ + Learn more about Git branches + +
+ + + + +s \ No newline at end of file From ce9c573bba1922c8e5da824210086495df4c644a Mon Sep 17 00:00:00 2001 From: ZiadMakkawi Date: Fri, 23 Jan 2026 19:52:41 +0000 Subject: [PATCH 2/2] Created the wireframe --- Wireframe/index.html | 118 +++++++++++++++++++++++++------------------ Wireframe/style.css | 104 ++++++++++++++++++++------------------ 2 files changed, 123 insertions(+), 99 deletions(-) diff --git a/Wireframe/index.html b/Wireframe/index.html index 8dc55ff33..e79cd1bb3 100644 --- a/Wireframe/index.html +++ b/Wireframe/index.html @@ -1,54 +1,72 @@ - -
-

Web Development Fundamentals

-

- An introduction to README files, wireframes, and Git branches. -

-
+ + + + + + Web Fundamentals + + -
-
- Document icon representing a README file -

What is a README file?

-

- A README file explains what a project does, how to set it up, and how to - use or contribute to it. It is usually the first thing people read when - they open a repository. -

- - Learn more about README files - -
+ +
+

Web Fundamentals!!!

+

Understanding README files, wireframes, and Git branches

+
-
- Wireframe sketch showing webpage layout -

What is a wireframe?

-

- A wireframe is a simple visual guide that shows the structure and layout - of a webpage before it is built. It helps designers and developers plan - content placement and user flow. -

- - Learn more about wireframes - -
+
+ + -
- Diagram showing Git branches -

What is a Git branch?

-

- A Git branch is a separate line of development that allows developers to - work on features or fixes without affecting the main codebase until the - changes are ready. -

- - Learn more about Git branches - -
-
+ +
+ Wireframe sketch showing page layout +

What is a wireframe?

+

+ A wireframe is a simple visual guide that shows the structure and + layout of a webpage before any code is written. +

+ + Read more + +
-
-

© 2026 Ziad Ahmed

-
- -s \ No newline at end of file +
+ Diagram illustrating Git branches +

What is a Git branch?

+

+ A Git branch allows developers to work on new features or fixes in + isolation without affecting the main codebase. +

+ + Read more + +
+
+ + + + diff --git a/Wireframe/style.css b/Wireframe/style.css index be835b6c7..6d37b5fe9 100644 --- a/Wireframe/style.css +++ b/Wireframe/style.css @@ -26,64 +26,70 @@ As well as useful links to learn more */ } /* ====== Base Elements ====== General rules for basic HTML elements in any context */ +* { + box-sizing: border-box; +} + body { - background: var(--paper); - color: var(--ink); - font: var(--font); + margin: 0; + font-family: system-ui, sans-serif; + min-height: 100vh; + padding-bottom: 4rem; } -a { - padding: var(--space); - border: var(--line); - max-width: fit-content; + +header { + text-align: center; + padding: 2rem 1rem; +} + +header h1 { + margin-bottom: 0.5rem; +} + +main { + max-width: 1200px; + margin: 0 auto; + padding: 1rem; + display: grid; + grid-template-columns: 1fr 1fr; + gap: 2rem; } -img, -svg { + +.featured { + grid-column: span 2; +} + +article { + border: 1px solid #000; + padding: 1rem; + display: flex; + flex-direction: column; + gap: 0.75rem; +} + +article img { width: 100%; + height: 200px; object-fit: cover; + border: 1px solid #000; } -/* ====== 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; + +a { + display: inline-block; + padding: 0.5rem 1rem; + border: 1px solid #000; + text-decoration: none; + color: inherit; + width: fit-content; } + footer { position: fixed; bottom: 0; + width: 100%; + border-top: 1px solid #000; + background: #fff; text-align: center; + padding: 0.75rem; } -/* ====== 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 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; - } -} +