Skip to content

Commit 90db0b7

Browse files
footer fixed and aligned to center, ready to push
1 parent 6a93af5 commit 90db0b7

3 files changed

Lines changed: 20 additions & 7 deletions

File tree

Wireframe/image3.png

135 KB
Loading

Wireframe/index.html

Lines changed: 13 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -27,18 +27,20 @@ <h2>README FILE</h2>
2727
</article>
2828
<article>
2929
<div>
30-
<img src="wireframe.png" alt="an image of a wireframe template" />
30+
<img src="image3.png" alt="an image of a wireframe template" />
3131
</div>
3232
<h2>WIREFRAMES</h2>
33-
<p>Wireframes are basic blueprints that help teams align on requirements, keeping UX design conversations focused and constructive.Think of your wireframe as the skeleton of your app, website, or other final product. Your wireframe shows the design team and stakeholders the bare-bones outlines of essential webpages, components, and features, including:
33+
<p>Wireframes are basic blueprints that help teams align on requirements, keeping UX design conversations focused and constructive.
34+
Think of your wireframe as the skeleton of your app, website, or other final product. Starting with a clean, spare wireframe design also gives UI/UX designers room to iterate. They can collect early feedback from user testing on core UX/UI elements, without distracting users with visual design details.
35+
Your wireframe shows the design team and stakeholders the bare-bones outlines of essential webpages, components, and features, including:
3436
</p>
3537
<ul>
3638
<li>Screen layouts</li>
3739
<li>Navigation bars</li>
3840
<li>Components of UX and UI design</li>
3941
<li>Interactive elements</li>
4042
</ul>
41-
<a href="https://www.figma.com/resource-library/what-is-wireframing/">Read more</a>
43+
<a href="https://www.figma.com/resource-library/what-is-wireframing/">Read more</a>
4244
</article>
4345
<article>
4446
<div>
@@ -48,14 +50,19 @@ <h2>GIT BRANCH</h2>
4850
<p>
4951
In Git, a branch is like a separate workspace where you can make changes and try new ideas without affecting the main project. Think of it as a "parallel universe" for your code.
5052
Branches let you work on different parts of a project, like new features or bug fixes, without interfering with the main branch. Branches allow you to work on different parts of a project without impacting the main branch.
51-
When the work is complete, a branch can be merged with the main project. You can even switch between branches and work on different projects without them interfering with each other. Branching in Git is very lightweight and fast!
53+
When the work is complete, a branch can be merged with the main project. You can even switch between branches and work on different projects without them interfering with each other. Branching in Git is very lightweight and fast! Common reasons to create a branch includes:
5254
</p>
53-
<a href="https://i0.wp.com/digitalvarys.com/wp-content/uploads/2019/06/GIT-Branchand-its-Operations.png?fit=1921%2C1057&ssl=1">Read more</a>
55+
<ul>
56+
<li>Developing a new feature</li>
57+
<li>Fixing a bug</li>
58+
<li>Experimenting with ideas</li>
59+
</ul>
60+
<a href="https://i0.wp.com/digitalvarys.com/wp-content/uploads/2019/06/GIT-Branchand-its-Operations.png?fit=1921%2C1057&ssl=1">Read more</a>
5461
</article>
5562
</main>
5663
<footer>
5764
<p>
58-
This is the default, provided code and no changes have been made yet.
65+
ALL RIGHTS RESERVED. RIZQAH POPOOLA 2026
5966
</p>
6067
</footer>
6168
</body>

Wireframe/style.css

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,13 @@ main {
6161
margin: 0 auto calc(var(--space) * 4) auto;
6262
}
6363
footer {
64-
text-align: center;
64+
position: fixed;
65+
left: 0;
66+
bottom: 0;
67+
width: 100%;
68+
background-color: rgb(231, 163, 200);
69+
color: white;
70+
text-align: center;
6571
}
6672
/* ====== Articles Grid Layout ====
6773
Setting the rules for how articles are placed in the main element.

0 commit comments

Comments
 (0)