diff --git a/Wireframe/index.html b/Wireframe/index.html index 0e014e535..31d8178da 100644 --- a/Wireframe/index.html +++ b/Wireframe/index.html @@ -3,31 +3,43 @@ - Wireframe + Wireframe Answers
-

Wireframe

-

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

+

Wireframe Answers

+

This code includes the answers to the wireframe exercise.

-
- -

Title

-

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

- Read more -
+ + +
+ GitHub README image +

1. What is the purpose of a README file?

+

A README file provides essential information about a project, including its purpose, usage instructions, and setup requirements.

+ Read more +
+ + +
+ Wireframe example image +

2. What is the purpose of a wireframe?

+

A wireframe is a visual guide that represents the skeletal framework of a website or application, used to plan layout and functionality.

+ Read more +
+ + +
+ GitHub Branch explanation image +

3. What is a branch in Git?

+

A branch in Git is a separate line of development that allows you to work on different versions of a project simultaneously without affecting the main codebase.

+ Read more +
+
- + \ No newline at end of file diff --git a/Wireframe/style.css b/Wireframe/style.css index be835b6c7..035047a2f 100644 --- a/Wireframe/style.css +++ b/Wireframe/style.css @@ -53,6 +53,11 @@ footer { position: fixed; bottom: 0; text-align: center; + font-weight: 500; + border: solid black 2px; + width: 100%; + background-color: white; + color: black; } /* ====== Articles Grid Layout ==== Setting the rules for how articles are placed in the main element. @@ -87,3 +92,19 @@ article { grid-column: span 3; } } + +article:nth-of-type(2) img, +article:nth-of-type(3) img { + height: 250px; + width: 100%; + object-fit: cover; +} + +article:nth-of-type(2), +article:nth-of-type(3) { + margin-bottom: 20px; +} + +header { + text-align: center; +}