diff --git a/Form-Controls/index.html b/Form-Controls/index.html index 74b591ffc..76f6d0dd5 100644 --- a/Form-Controls/index.html +++ b/Form-Controls/index.html @@ -1,27 +1,74 @@ - - - - My form exercise - - - - -
-

Product Pick

-
-
-
- - -
-
- - - + + + + + My form exercise + + + + + + +
+

Product Pick

+
+
+
+
+ Name and Email address + + +

+ + +
+
+ + +
+ Please select a colour for your T-Shirt + + + +

+
+ Please select a size for your T-Shirt + + + + + + +

+
+ +
+
+
+ + + + \ No newline at end of file diff --git a/Form-Controls/style.css b/Form-Controls/style.css new file mode 100644 index 000000000..bb1dfea42 --- /dev/null +++ b/Form-Controls/style.css @@ -0,0 +1,3 @@ +legend { + font-weight: bold; +} \ No newline at end of file diff --git a/Wireframe/README-image.png b/Wireframe/README-image.png new file mode 100644 index 000000000..00a1aba8c Binary files /dev/null and b/Wireframe/README-image.png differ diff --git a/Wireframe/branch-image.jpg b/Wireframe/branch-image.jpg new file mode 100644 index 000000000..52cfb9985 Binary files /dev/null and b/Wireframe/branch-image.jpg differ diff --git a/Wireframe/index.html b/Wireframe/index.html index 0e014e535..31cf9fc0a 100644 --- a/Wireframe/index.html +++ b/Wireframe/index.html @@ -1,33 +1,65 @@ - - - - Wireframe - - - -
-

Wireframe

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

Wireframe

+

+ This page will show: +

+ +
+
+
+ an image showing an example of a README file +

+ What is the purpose of a README file? +

- This is the default, provided code and no changes have been made yet. + A README file is the foundational documentation + for a software, dataset, or coding project. + It serves as a project's "front door," designed to help users quickly understand what the project does, + how to install and use it, and how to contribute

-
-
-
- -

Title

-

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

- Read more -
-
- - - + Read more + +
+ an image showing a Git branch +

What is a Branch in Git?

+

+ A branch in Git is a lightweight movable pointer to a commit. + It allows you to diverge from the mainline of development and work on features, experiments, or bug fixes + without affecting the main codebase. +

+ Read more +
+ + + + + \ No newline at end of file diff --git a/Wireframe/placeholder.svg b/Wireframe/placeholder.svg deleted file mode 100644 index ac36a0abc..000000000 --- a/Wireframe/placeholder.svg +++ /dev/null @@ -1,6 +0,0 @@ - - - - - - \ No newline at end of file diff --git a/Wireframe/style.css b/Wireframe/style.css index be835b6c7..abc262f73 100644 --- a/Wireframe/style.css +++ b/Wireframe/style.css @@ -24,7 +24,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); @@ -50,10 +50,16 @@ main { margin: 0 auto calc(var(--space) * 4) auto; } footer { + background-color: black; + color: white; + font-size: 10px; position: fixed; bottom: 0; text-align: center; + box-sizing: border-box; + width: 100%; } + /* ====== 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 @@ -86,4 +92,4 @@ article { > img { grid-column: span 3; } -} +} \ No newline at end of file diff --git a/Wireframe/wireframe.png b/Wireframe/wireframe.png index 731f01503..82bf93a9c 100644 Binary files a/Wireframe/wireframe.png and b/Wireframe/wireframe.png differ