diff --git a/Wireframe/image_branch.webp b/Wireframe/image_branch.webp new file mode 100644 index 000000000..02dfcb7c2 Binary files /dev/null and b/Wireframe/image_branch.webp differ diff --git a/Wireframe/image_readme.webp b/Wireframe/image_readme.webp new file mode 100644 index 000000000..56cc2d699 Binary files /dev/null and b/Wireframe/image_readme.webp differ diff --git a/Wireframe/image_wireframe.avif b/Wireframe/image_wireframe.avif new file mode 100644 index 000000000..74ed94542 Binary files /dev/null and b/Wireframe/image_wireframe.avif differ diff --git a/Wireframe/index.html b/Wireframe/index.html index 0e014e535..77ee67bc7 100644 --- a/Wireframe/index.html +++ b/Wireframe/index.html @@ -1,33 +1,56 @@ - - - - Wireframe - - - -
-

Wireframe

+ + + + + Wireframe + + + + +
+

Key Web Development Concepts

+

+ Definitions of README files, Wireframes, and Git branches. +

+
+
+
+ A picture about the necessity of the readme file +

What is a README file?

- This is the default, provided code and no changes have been made yet. + A README file is a document included in a project that explains what the project is about, how to set it up, and + how to use it. It helps other developers and users understand your work quickly.

-
-
-
- -

Title

-

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

- Read more -
-
- - - + Read more + +
+ Git branches diagram +

What is a Branch in Git?

+

+ A branch in Git is a separate line of development in a project. It allows you to work on new features or fixes without affecting the main code. Once ready, the changes can be merged back into the main branch. +

+ Read more +
+ + + + + \ No newline at end of file diff --git a/Wireframe/style.css b/Wireframe/style.css index be835b6c7..976e27d42 100644 --- a/Wireframe/style.css +++ b/Wireframe/style.css @@ -30,11 +30,13 @@ body { background: var(--paper); color: var(--ink); font: var(--font); + padding-bottom: 60px; } a { padding: var(--space); border: var(--line); max-width: fit-content; + border-style: none; } img, svg { @@ -48,11 +50,15 @@ https://www.w3.org/WAI/tutorials/page-structure/regions/ main { max-width: var(--container); margin: 0 auto calc(var(--space) * 4) auto; + display: flex; } footer { position: fixed; bottom: 0; text-align: center; + height: 60px; + background-color:#f6f4f4; + width: 100%; } /* ====== Articles Grid Layout ==== Setting the rules for how articles are placed in the main element. @@ -87,3 +93,16 @@ article { grid-column: span 3; } } + +header { + text-align: center; +} +ul { + display: flex; + justify-content: center; +} +li { + padding: 15px; + font-size: 10px; + list-style-type: none; +}