diff --git a/Wireframe/1_K9scAx1Ezd-KJFabaYseCw.png b/Wireframe/1_K9scAx1Ezd-KJFabaYseCw.png
new file mode 100644
index 000000000..02dfcb7c2
Binary files /dev/null and b/Wireframe/1_K9scAx1Ezd-KJFabaYseCw.png differ
diff --git a/Wireframe/branch.png b/Wireframe/branch.png
new file mode 100644
index 000000000..62b0d5c3b
Binary files /dev/null and b/Wireframe/branch.png differ
diff --git a/Wireframe/index.html b/Wireframe/index.html
index 0e014e535..3e3cebc01 100644
--- a/Wireframe/index.html
+++ b/Wireframe/index.html
@@ -8,25 +8,49 @@
- Wireframe
+ Exercise
- This is the default, provided code and no changes have been made yet.
+ Today we will learn about README files,
+ Wireframe and branch in git.
-
- Title
+
+ Purpose of a README file
- Lorem ipsum dolor sit amet consectetur adipisicing elit. Quisquam,
- voluptates. Quisquam, voluptates.
+ README Files are a common way
+ to document the contents and structure
+ of a folder and/or a dataset
+ so that a researcher can locate the information they need.
- Read more
+ Read more
+
+
+ What is a wireframe?
+ A wireframe is the skeleton of your digital project.
+ Think of it as the foundation for your website, app,
+ or dashboard. It focuses on layout, and content placement
+ not on colors, fonts, or any visual polish.
+ Read more
+
+
+
+ What is a branch in git
+ A branch in Git is simply a lightweight movable pointer
+ to one of these commits.
+ The default branch name in Git is master.
+ As you start making commits, you're given a master branch
+ that points to the last commit you made.
+
+ Read more
+
+
diff --git a/Wireframe/readme-automatic-toc.png b/Wireframe/readme-automatic-toc.png
new file mode 100644
index 000000000..2d50be922
Binary files /dev/null and b/Wireframe/readme-automatic-toc.png differ
diff --git a/Wireframe/style.css b/Wireframe/style.css
index be835b6c7..1faaf7d5d 100644
--- a/Wireframe/style.css
+++ b/Wireframe/style.css
@@ -28,13 +28,18 @@ As well as useful links to learn more */
General rules for basic HTML elements in any context */
body {
background: var(--paper);
+ background-color: powderblue;
color: var(--ink);
font: var(--font);
+ text-align: center;
}
a {
padding: var(--space);
border: var(--line);
max-width: fit-content;
+ padding-block: var(--space);
+
+ padding: var(--space);
}
img,
svg {
@@ -78,12 +83,34 @@ article {
border: var(--line);
padding-bottom: var(--space);
text-align: left;
+ text-justify: distribute;
display: grid;
grid-template-columns: var(--space) 1fr var(--space);
> * {
grid-column: 2/3;
}
- > img {
- grid-column: span 3;
- }
+
+}
+.sections {
+ text-align: left;
+ border: var(--line);
+ padding-inline: var(--space);
+ padding-bottom: var(--space);
+ text-justify: distribute;
+}
+.container {
+ padding-block: var(--line);
}
+
+img {
+ object-fit: cover;
+ margin-top: 15px;
+}
+
+#pic {
+ height: 400px;
+}
+
+
+
+
diff --git a/Wireframe/wireframe-example-plain.png b/Wireframe/wireframe-example-plain.png
new file mode 100644
index 000000000..ac4f48e35
Binary files /dev/null and b/Wireframe/wireframe-example-plain.png differ