Skip to content

Commit 2242ee5

Browse files
committed
added definition for terms
1 parent 1e83f33 commit 2242ee5

2 files changed

Lines changed: 17 additions & 12 deletions

File tree

Wireframe/index.html

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -10,41 +10,41 @@
1010
<header>
1111
<h1>Wireframe</h1>
1212
<p>
13-
This is the default, provided code and no changes have been made yet.
13+
A simple way to explain how a website will look and work before adding all the fancy details.
1414
</p>
1515
</header>
1616
<main>
1717
<article>
1818
<img src="placeholder.svg" alt="" />
19-
<h2>Title</h2>
19+
<h2>README</h2>
2020
<p>
21-
Lorem ipsum dolor sit amet consectetur adipisicing elit. Quisquam,
22-
voluptates. Quisquam, voluptates.
21+
README is a guidebook for a project. Imagine you get a new toy, and it comes with a small booklet that explains what the toy is, how to use it, and how to take care of it.
22+
A README file does the same for a project, it tells people what the project is about, how to use it, and any important details they need to know.
2323
</p>
2424
<a href="">Read more</a>
2525
</article>
2626
<article>
2727
<img src="placeholder.svg" alt="" />
28-
<h2>Title</h2>
28+
<h2>Wireframe</h2>
2929
<p>
30-
Lorem ipsum dolor sit amet consectetur adipisicing elit. Quisquam,
31-
voluptates. Quisquam, voluptates.
30+
A Wireframe is like a blueprint for a website. Imagine you're drawing a plan for a house before building it. You sketch where the rooms, doors, and windows will go, but you don't add colors,
31+
furniture, or decorations yet. <br/> A <em>Wireframe</em> does the same for a website, it shows where pictures, buttons, and texts will go, all the while doesn't worry about making it look pretty yet.
3232
</p>
3333
<a href="">Read more</a>
3434
</article>
3535
<article>
3636
<img src="placeholder.svg" alt="" />
37-
<h2>Title</h2>
37+
<h2>Git</h2>
3838
<p>
39-
Lorem ipsum dolor sit amet consectetur adipisicing elit. Quisquam,
40-
voluptates. Quisquam, voluptates.
39+
Git is like a magic notebook for your project. It's similar to when you're drawing a picture, and every time you make a change, the notebook saves a copy of your work. If you make a mistake, you can go back to an earlier
40+
version and fix it. <br/> <em>Git</em> does the same for your code, it keeps track of all the changes you make so you can go back if something goes wrong.
4141
</p>
4242
<a href="">Read more</a>
4343
</article>
4444
</main>
4545
<footer>
4646
<p>
47-
This is the default, provided code and no changes have been made yet.
47+
© 2025 Abayie
4848
</p>
4949
</footer>
5050
</body>

Wireframe/style.css

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,9 +50,14 @@ main {
5050
margin: 0 auto calc(var(--space) * 4) auto;
5151
}
5252
footer {
53-
position: fixed;
53+
/* position: fixed; */
5454
bottom: 0;
5555
text-align: center;
56+
display: flex;
57+
justify-content: center;
58+
padding: 5px;
59+
background-color: #f2f4f7;
60+
color: #1b1919;
5661
}
5762
/* ====== Articles Grid Layout ====
5863
Setting the rules for how articles are placed in the main element.

0 commit comments

Comments
 (0)