Skip to content

Commit 0582aff

Browse files
committed
Update wireframe content and alt text
1 parent aff984a commit 0582aff

4 files changed

Lines changed: 62 additions & 17 deletions

File tree

Wireframe/README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@
1313
<!--{{</objectives>}}>-->
1414

1515
## Task
16+
1617
![Wireframe](./wireframe.png)
1718

1819
Using the provided wireframe and resources, write a new webpage explaining:

Wireframe/index.html

Lines changed: 41 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
<!DOCTYPE html>
1+
<!doctype html>
22
<html lang="en">
33
<head>
44
<meta charset="UTF-8" />
@@ -9,25 +9,56 @@
99
<body>
1010
<header>
1111
<h1>Wireframe</h1>
12-
<p>
13-
This is the default, provided code and no changes have been made yet.
12+
13+
<p Id="para">
14+
A wireframe is a basic, two-dimensional blueprint or outline of a
15+
website or app interface.
1416
</p>
1517
</header>
18+
1619
<main>
1720
<article>
18-
<img src="placeholder.svg" alt="" />
19-
<h2>Title</h2>
21+
<img src="images/Classroom Wireframe.jpg" alt="alt="Classroom website wireframe showing the layout of an educational platform"
22+
23+
/>" />
24+
<h2>What is the purpose of a README file?</h2>
2025
<p>
21-
Lorem ipsum dolor sit amet consectetur adipisicing elit. Quisquam,
22-
voluptates. Quisquam, voluptates.
26+
A README file is a document that provides information about a project,
27+
including its purpose, how to use it, and any other relevant details.
28+
It serves as a guide for users and developers who want to understand
29+
the project and contribute to it.</p>
30+
<a href="">Read more</a>
31+
</p>
32+
</article>
33+
34+
<article>
35+
<img src="images\Cafe Wireframe .jpg" alt=""Cafe website wireframe showing the layout of a restaurant homepage"
36+
/>" />
37+
<h2>What is the purpose of a wireframe?</h2>
38+
39+
<p>
40+
A wireframe is a visual representation of a website or app's layout
41+
and structure. It serves as a blueprint for the design and development
42+
process, allowing designers and developers to plan the user interface
43+
and user experience before creating the final product.
44+
</p>
45+
<a href="">Read more</a>
46+
</article>
47+
48+
<article>
49+
<img src="images/Shopping Wireframe.jpg" alt="Shopping website wireframe showing the layout of an e-commerce platform"
50+
/>" />
51+
<h2>What is a branch?</h2>
52+
<p>
53+
A branch in version control is a separate line of development. It
54+
allows you to work on different features or experiments without
55+
affecting the main codebase.
2356
</p>
2457
<a href="">Read more</a>
2558
</article>
2659
</main>
2760
<footer>
28-
<p>
29-
This is the default, provided code and no changes have been made yet.
30-
</p>
61+
<p>Enice Mutanda Cyf 2026</p>
3162
</footer>
3263
</body>
3364
</html>

Wireframe/style.css

Lines changed: 20 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -26,10 +26,15 @@ As well as useful links to learn more */
2626
}
2727
/* ====== Base Elements ======
2828
General rules for basic HTML elements in any context */
29+
2930
body {
3031
background: var(--paper);
3132
color: var(--ink);
3233
font: var(--font);
34+
35+
min-height: 100vh;
36+
display: flex;
37+
flex-direction: column;
3338
}
3439
a {
3540
padding: var(--space);
@@ -44,14 +49,8 @@ svg {
4449
/* ====== Site Layout ======
4550
Setting the overall rules for page regions
4651
https://www.w3.org/WAI/tutorials/page-structure/regions/
47-
*/
48-
main {
49-
max-width: var(--container);
50-
margin: 0 auto calc(var(--space) * 4) auto;
51-
}
52+
5253
footer {
53-
position: fixed;
54-
bottom: 0;
5554
text-align: center;
5655
}
5756
/* ====== Articles Grid Layout ====
@@ -61,10 +60,17 @@ Play with the options that come up.
6160
https://developer.chrome.com/docs/devtools/css/grid
6261
https://gridbyexample.com/learn/
6362
*/
63+
6464
main {
65+
flex: 1;
66+
67+
max-width: var(--container);
68+
margin: 0 auto calc(var(--space) * 4) auto;
69+
6570
display: grid;
6671
grid-template-columns: 1fr 1fr;
6772
gap: var(--space);
73+
6874
> *:first-child {
6975
grid-column: span 2;
7076
}
@@ -87,3 +93,10 @@ article {
8793
grid-column: span 3;
8894
}
8995
}
96+
h1 {
97+
text-align: center;
98+
}
99+
100+
#para {
101+
text-align: center;
102+
}

0 commit comments

Comments
 (0)