Skip to content

Commit e38d556

Browse files
committed
I did as readme asked me to do
1 parent a575a36 commit e38d556

File tree

2 files changed

+50
-8
lines changed

2 files changed

+50
-8
lines changed

Wireframe/index.html

Lines changed: 42 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -10,23 +10,58 @@
1010
<header>
1111
<h1>Wireframe</h1>
1212
<p>
13-
This is the default, provided code and no changes have been made yet.
13+
Let's explore three concepts.
1414
</p>
1515
</header>
1616
<main>
17+
18+
1719
<article>
1820
<img src="placeholder.svg" alt="" />
19-
<h2>Title</h2>
21+
<h2> What is the purpose of a README file?</h2>
2022
<p>
21-
Lorem ipsum dolor sit amet consectetur adipisicing elit. Quisquam,
22-
voluptates. Quisquam, voluptates.
23+
A README file serves as an introductory document for a software project or dataset, providing users with essential information about what the project does, how to use it, and how to get started. It's a crucial piece of documentation that helps users understand the project's purpose,
24+
requirements, and installation/usage instructions
25+
26+
2327
</p>
2428
<a href="">Read more</a>
2529
</article>
26-
</main>
27-
<footer>
30+
31+
32+
33+
34+
<article>
35+
<img src="placeholder.svg" alt="" />
36+
<h2>What is the purpose of a wireframe?</h2>
37+
<p>
38+
39+
A wireframe's purpose is to visually represent the layout and structure of a webpage, app, or other digital product, focusing on functionality and user experience before detailed design and development. It acts as a blueprint, outlining how content and elements will
40+
be placed and how they interact with the use
41+
42+
43+
</p>
44+
<a href="">Read more</a>
45+
</article>
46+
47+
48+
49+
50+
<article>
51+
<img src="placeholder.svg" alt="" />
52+
<h2>What is a branch in Git?</h2>
53+
<p>
54+
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. Every time you commit,
55+
the master branch pointer moves forward automatically
56+
</p>
57+
<a href="">Read more</a>
58+
</article>
59+
</main>
60+
61+
62+
<footer >
2863
<p>
29-
This is the default, provided code and no changes have been made yet.
64+
it's all done by Jabir Adam
3065
</p>
3166
</footer>
3267
</body>

Wireframe/style.css

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,9 +50,10 @@ main {
5050
margin: 0 auto calc(var(--space) * 4) auto;
5151
}
5252
footer {
53-
position: fixed;
53+
5454
bottom: 0;
5555
text-align: center;
56+
background-color: rgb(239, 133, 133);
5657
}
5758
/* ====== Articles Grid Layout ====
5859
Setting the rules for how articles are placed in the main element.
@@ -87,3 +88,9 @@ article {
8788
grid-column: span 3;
8889
}
8990
}
91+
h1{
92+
text-align: center;
93+
background-color: rgb(114, 147, 247);
94+
95+
96+
}

0 commit comments

Comments
 (0)