diff --git a/Wireframe/index.html b/Wireframe/index.html index 0e014e53..372d1f26 100644 --- a/Wireframe/index.html +++ b/Wireframe/index.html @@ -1,33 +1,64 @@ - - - - Wireframe - - - -
-

Wireframe

+ + + + + + About Wireframes, READMEs and Git Branches + + + + + +
+

+ About Wireframes, READMEs and Git Branches +

+

+ This page explores wireframes in web design, the significance of README + files in software projects and the role of branches in Git version + control. +

+
+
+
+ +

Wireframe

- This is the default, provided code and no changes have been made yet. + Wireframe provides a foundational structural template for web pages. + It serves as a communication tool for stakeholders, web designers and + developers, providing a simple structural view of the rendered web + page.

-
-
-
- -

Title

-

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

- Read more -
-
- - - + Read more + +
+ +

Git branches

+

+ Git branches are a fundamental feature that enables users to develop + features and make commits independently of the main branch. This + facilitates parallel development by multiple teams without causing + conflicts directly. +

+ Read more +
+ + + + \ No newline at end of file diff --git a/Wireframe/style.css b/Wireframe/style.css index be835b6c..0624db9e 100644 --- a/Wireframe/style.css +++ b/Wireframe/style.css @@ -30,7 +30,12 @@ body { background: var(--paper); color: var(--ink); font: var(--font); +} + +header { + text-align: center; } + a { padding: var(--space); border: var(--line); @@ -48,11 +53,18 @@ https://www.w3.org/WAI/tutorials/page-structure/regions/ main { max-width: var(--container); margin: 0 auto calc(var(--space) * 4) auto; + height: 90%; } footer { - position: fixed; - bottom: 0; text-align: center; + padding: 15px 0; + position: fixed; + width: 100%; + bottom: 0; + left: 0; + font-family: Arial, sans-serif; + border: solid; + background-color: #ccc; } /* ====== Articles Grid Layout ==== Setting the rules for how articles are placed in the main element.