diff --git a/Form-Controls/index.html b/Form-Controls/index.html index 65a866cdb..53718b09f 100644 --- a/Form-Controls/index.html +++ b/Form-Controls/index.html @@ -14,14 +14,65 @@

Product Pick

- + +
+ Confirm your identity + +
+ + +
+ +
+ + +
+
+ +
+ Choose your shirt color +
+ + +
+
+ + +
+
+ + +
+
+ +
+ Choose your size +
+ + +
+
+
diff --git a/Wireframe/Readme.svg b/Wireframe/Readme.svg new file mode 100644 index 000000000..5e9adc77e --- /dev/null +++ b/Wireframe/Readme.svg @@ -0,0 +1,7 @@ + + + + + + + diff --git a/Wireframe/Wireframe.svg b/Wireframe/Wireframe.svg new file mode 100644 index 000000000..91b2d63a0 --- /dev/null +++ b/Wireframe/Wireframe.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/Wireframe/book_open.svg b/Wireframe/book_open.svg new file mode 100644 index 000000000..0accc8919 --- /dev/null +++ b/Wireframe/book_open.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Wireframe/git b/Wireframe/git new file mode 100644 index 000000000..e69de29bb diff --git a/Wireframe/git_branch_icon.svg b/Wireframe/git_branch_icon.svg new file mode 100644 index 000000000..13af359cc --- /dev/null +++ b/Wireframe/git_branch_icon.svg @@ -0,0 +1 @@ +Git \ No newline at end of file diff --git a/Wireframe/index.html b/Wireframe/index.html index 0e014e535..f88bb59ff 100644 --- a/Wireframe/index.html +++ b/Wireframe/index.html @@ -5,28 +5,49 @@ Wireframe +
-

Wireframe

+

Basics in Web Development

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

+
- -

Title

+ Illustration of Readme icon +

The README file

- Lorem ipsum dolor sit amet consectetur adipisicing elit. Quisquam, - voluptates. Quisquam, voluptates. + A README file introduces a project, explains its purpose, and provides instructions for installation and usage. It helps others understand what the project does, how to set it up, and where to find additional resources.

- Read more + Read more for README files
+ +
+ Illustration of Wireframe +

The Wireframe

+

+ A wireframe is a visual guide that represents the structure and layout of a webpage or app. It helps designers and developers plan placement of elements and user flow before adding detailed content and styling. +

+ Read more for Wireframe +
+ +
+ Illustration of git branch icon +

A branch in Git

+

+ A branch in Git is an independent line of development, allowing you to work on new features or changes without affecting the main codebase. This enables collaboration and makes it easy to test, review, and merge updates. +

+ Find out more for Branches in Git +
+ +
diff --git a/Wireframe/style.css b/Wireframe/style.css index be835b6c7..3c94de217 100644 --- a/Wireframe/style.css +++ b/Wireframe/style.css @@ -17,20 +17,39 @@ As well as useful links to learn more */ https://scrimba.com/learn-css-variables-c026 ====== Design Palette ====== */ :root { - --paper: oklch(7 0 0); + --paper: rgba(224, 230, 191, 0.801); --ink: color-mix(in oklab, var(--color) 5%, black); --font: 100%/1.5 system-ui; --space: clamp(6px, 6px + 2vw, 15px); - --line: 1px solid; + --line: 10px groove #012f5d; --container: 1280px; } /* ====== Base Elements ====== General rules for basic HTML elements in any context */ +header { + text-align: center; + padding: var(--space); +} + +header h1 { + font-size: 4rem; +} + +header p { + font-size: 2.5rem; +} + body { background: var(--paper); color: var(--ink); font: var(--font); } + +h2 { + text-align: center; + font-size: 2.5rem; +} + a { padding: var(--space); border: var(--line); @@ -51,6 +70,8 @@ main { } footer { position: fixed; + left: 0; + right: 0; bottom: 0; text-align: center; }