Skip to content

Commit 3c61b68

Browse files
Imported correct font and removed uneeded p
elements and added correct content inline with the README
1 parent 9b793ac commit 3c61b68

8 files changed

Lines changed: 22 additions & 12 deletions

File tree

Wireframe/README.css

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,9 @@
1+
@import url("https://fonts.googleapis.com/css2?family=Permanent+Marker&display=swap");
2+
13
:root {
24
--paper: oklch(7 0 0);
35
--ink: color-mix(in oklab, var(--color) 5%, black);
4-
--font: 100%/1.5 "Comic Neue", cursive, uppercase;
6+
--font: 100%/1.5 "Permanent Marker", bold;
57
--space: clamp(6px, 6px + 2vw, 15px);
68
--line: 1px solid;
79
--container: 1280px;

Wireframe/README.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ <h1>README Files</h1>
1515
<img src="readme.png" alt="">
1616
<h2>What is the purpose of a README file? </h2>
1717
<p>
18-
In this article we will cover the purpose of a branch in git
18+
A README file is used to give information so a user can ascertain key details of a program such as its function, how it works, how to set it up and general updates.
1919
</p>
2020
<a rel="html" href="index.html">Back</a>
2121
</article>

Wireframe/branch.css

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,9 @@
1+
@import url("https://fonts.googleapis.com/css2?family=Permanent+Marker&display=swap");
2+
13
:root {
24
--paper: oklch(7 0 0);
35
--ink: color-mix(in oklab, var(--color) 5%, black);
4-
--font: 100%/1.5 "Comic Neue", cursive, uppercase;
6+
--font: 100%/1.5 "Permanent Marker", bold;
57
--space: clamp(6px, 6px + 2vw, 15px);
68
--line: 1px solid;
79
--container: 1280px;

Wireframe/branch.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ <h1>Git Branches</h1>
1515
<img src="Branch.png" alt="">
1616
<h2>What is a branch in Git? </h2>
1717
<p>
18-
In this article we will cover the purpose of a branch in git
18+
A branch in Git is a seperate workspace used to experiment or make changes without affecting the main project.
1919
</p>
2020
<a rel="html" href="index.html">Back</a>
2121
</article>

Wireframe/index.html

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -39,11 +39,11 @@ <h2>README files</h2>
3939
</main>
4040
<footer>
4141
<hr>
42-
<pre>
43-
Contact us on:
44-
telephone: 07489763234
42+
<p>
43+
Contact us on
44+
telephone: 07489763234 or
4545
email: usersupport@hotmail.com
46-
</pre>
46+
</p>
4747
</footer>
4848
</body>
4949
</html>

Wireframe/style.css

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,10 +17,12 @@ As well as useful links to learn more */
1717
https://scrimba.com/learn-css-variables-c026
1818
====== Design Palette ====== */
1919

20+
@import url("https://fonts.googleapis.com/css2?family=Permanent+Marker&display=swap");
21+
2022
:root {
2123
--paper: oklch(7 0 0);
2224
--ink: color-mix(in oklab, var(--color) 5%, black);
23-
--font: 100%/1.5 "Comic Neue", cursive, uppercase;
25+
--font: 100%/1.5 "Permanent Marker", bold;
2426
--space: clamp(6px, 6px + 2vw, 15px);
2527
--line: 1px solid;
2628
--container: 1280px;
@@ -34,11 +36,13 @@ header p
3436

3537
/* ====== Base Elements ======
3638
General rules for basic HTML elements in any context */
37-
body {
39+
body{
3840
background: var(--paper);
3941
color: var(--ink);
4042
font: var(--font);
43+
text-transform: uppercase;
4144
}
45+
4246
a {
4347
padding: var(--space);
4448
border: var(--line);

Wireframe/wireframe.css

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,9 @@
1+
@import url("https://fonts.googleapis.com/css2?family=Permanent+Marker&display=swap");
2+
13
:root {
24
--paper: oklch(7 0 0);
35
--ink: color-mix(in oklab, var(--color) 5%, black);
4-
--font: 100%/1.5 "Comic Neue", cursive, uppercase;
6+
--font: 100%/1.5 "Permanent Marker", bold;
57
--space: clamp(6px, 6px + 2vw, 15px);
68
--line: 1px solid;
79
--container: 1280px;

Wireframe/wireframe.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ <h1>Wireframes</h1>
1515
<img src="wireframes.png" alt="">
1616
<h2>What is the purpose of a Wireframe?</h2>
1717
<p>
18-
In this article we will cover the purpose of a branch in git
18+
A wireframe is used as a structural blueprint that allows a developer to envision how a project will look.
1919
</p>
2020
<a rel="html" href="index.html">Back</a>
2121
</article>

0 commit comments

Comments
 (0)