diff --git a/Form-Controls/README.md b/Form-Controls/README.md index bfcdf6c0..54d27d2c 100644 --- a/Form-Controls/README.md +++ b/Form-Controls/README.md @@ -30,18 +30,18 @@ Do not write a form action for this project. Let's write out our testable criteria. Check each one off as you complete it. -- [ ] I have used HTML only. +- [x] I have used HTML only. - [x] I have not used any CSS or JavaScript. ### HTML -- [ ] My form is semantic html. -- [ ] All inputs have associated labels. -- [ ] My Lighthouse Accessibility score is 100. -- [ ] I require a valid name. I have defined a valid name as a text string of two characters or more. -- [ ] I require a valid email. -- [ ] I require one colour from a defined set of 3 colours. -- [ ] I require one size from a defined set of 6 sizes. +- [x] My form is semantic html. +- [x] All inputs have associated labels. +- [x] My Lighthouse Accessibility score is 100. +- [x] I require a valid name. I have defined a valid name as a text string of two characters or more. +- [x] I require a valid email. +- [x] I require one colour from a defined set of 3 colours. +- [x] I require one size from a defined set of 6 sizes. ## Resources diff --git a/Form-Controls/index.html b/Form-Controls/index.html index 65a866cd..d99252ee 100644 --- a/Form-Controls/index.html +++ b/Form-Controls/index.html @@ -17,11 +17,48 @@

Product Pick

+ + + + +

+ + + + +

+ + + + +

+ + + + + + + + + + + + + + + +

+ + diff --git a/Wireframe/index.html b/Wireframe/index.html index 0e014e53..bca7d475 100644 --- a/Wireframe/index.html +++ b/Wireframe/index.html @@ -8,26 +8,54 @@
-

Wireframe

+

Wireframe in a nutshell

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

-
-
-
- -

Title

-

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

- Read more -
-
+ In this page you will understand the key concepts those are essential for project development. +

+ + + + +
+
+ +
+ A simple wireframe illustration featuring a light gray rectangle as the background, a red translucent circle representing the sun near the top right, and two triangular mountain shapes in dark gray and slate gray overlapping at the bottom. The scene conveys a calm and minimalistic design. +

Wireframe

+

+ a wireframe is a visual guide that represents the skeletal framework of a website or application, focusing on layout and functionality rather than design elements. It serves as a blueprint for developers and designers to understand the structure and flow of the project. +

+ Read more +
+ +
+
+ A simple wireframe illustration featuring a light gray rectangle as the background, a red translucent circle representing the sun near the top right, and two triangular mountain shapes in dark gray and slate gray overlapping at the bottom. The scene conveys a calm and minimalistic design. +

Readme File

+

+ A README file contains information about what a project is, how to set it up, and how to use it, helping others quickly grasp the purpose and structure of your work. A README file is a text document, typically named README.txt or README.md. +

+ Read more +
+
+ +
+
+ A simple wireframe illustration featuring a light gray rectangle as the background, a red translucent circle representing the sun near the top right, and two triangular mountain shapes in dark gray and slate gray overlapping at the bottom. The scene conveys a calm and minimalistic design. +

Branch in Git

+

+ A branch in Git is a separate line of development that allows multiple developers to work on different features or fixes simultaneously without interfering with each other's work. It enables parallel development and helps maintain a clean and organized codebase. +

+ Read more +
+ + +
+ diff --git a/Wireframe/style.css b/Wireframe/style.css index be835b6c..711a216e 100644 --- a/Wireframe/style.css +++ b/Wireframe/style.css @@ -16,6 +16,12 @@ As well as useful links to learn more */ https://web.dev/articles/min-max-clamp https://scrimba.com/learn-css-variables-c026 ====== Design Palette ====== */ +h1 { + text-align: center; + background-color: rgb(224, 254, 254); + font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif; + +} :root { --paper: oklch(7 0 0); --ink: color-mix(in oklab, var(--color) 5%, black); @@ -36,7 +42,7 @@ a { border: var(--line); max-width: fit-content; } -img, +img, svg { width: 100%; object-fit: cover; @@ -46,6 +52,7 @@ 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; }