Skip to content

Commit 8a70e00

Browse files
committed
Completed wireframe sprint 2
1 parent a7b8a25 commit 8a70e00

5 files changed

Lines changed: 52 additions & 11 deletions

File tree

Wireframe/images/image1.jpg

1.99 MB
Loading

Wireframe/images/image2.jpg

1.99 MB
Loading

Wireframe/images/image3.jpg

1.99 MB
Loading

Wireframe/index.html

Lines changed: 37 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -8,25 +8,55 @@
88
</head>
99
<body>
1010
<header>
11-
<h1>Wireframe</h1>
11+
<center>
12+
<h1>Wireframe</h1>
13+
</center>
1214
<p>
13-
This is the default, provided code and no changes have been made yet.
15+
A wireframe is a basic, two-dimensional blueprint or outline of
16+
a website or app interface
1417
</p>
1518
</header>
1619
<main>
1720
<article>
18-
<img src="placeholder.svg" alt="" />
19-
<h2>Title</h2>
21+
22+
<img src="images/image1.jpg" alt="" />
23+
<h2>What is the purpose of a README file?</h2>
2024
<p>
21-
Lorem ipsum dolor sit amet consectetur adipisicing elit. Quisquam,
22-
voluptates. Quisquam, voluptates.
25+
A README file is a document that provides information about a project,
26+
including its purpose, how to use it, and any other relevant details.
27+
It serves as a guide for users and developers who want to understand
28+
the project and contribute to it.
29+
2330
</p>
2431
<a href="">Read more</a>
32+
</article>
33+
34+
<article>
35+
<img src="images/image2.jpg" alt="" />
36+
<h2>What is the purpose of a wireframe?</h2>
37+
<p>
38+
A wireframe is a visual representation of a website or app's layout and
39+
structure. It serves as a blueprint for the design and development
40+
process, allowing designers and developers to plan the user interface
41+
and user experience before creating the final product.</p>
42+
<a href="">Read more</a>
43+
</article>
44+
45+
<article>
46+
<img src="images/image3.jpg" alt="" />
47+
<h2>What is a branch?</h2>
48+
<p>
49+
A branch in version control is a separate line of development.
50+
It allows you to work on different features or experiments without affecting the main codebase.
51+
</p>
52+
<a href="">Read more</a>
53+
2554
</article>
55+
2656
</main>
2757
<footer>
2858
<p>
29-
This is the default, provided code and no changes have been made yet.
59+
CYF Module Onboarding - Wireframe Exercise 2026
3060
</p>
3161
</footer>
3262
</body>

Wireframe/style.css

Lines changed: 15 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -30,29 +30,40 @@ body {
3030
background: var(--paper);
3131
color: var(--ink);
3232
font: var(--font);
33+
3334
}
3435
a {
3536
padding: var(--space);
3637
border: var(--line);
3738
max-width: fit-content;
3839
}
40+
41+
h1{
42+
postion: center;
43+
}
44+
45+
3946
img,
4047
svg {
4148
width: 100%;
4249
object-fit: cover;
50+
4351
}
52+
4453
/* ====== Site Layout ======
4554
Setting the overall rules for page regions
4655
https://www.w3.org/WAI/tutorials/page-structure/regions/
4756
*/
4857
main {
4958
max-width: var(--container);
5059
margin: 0 auto calc(var(--space) * 4) auto;
60+
5161
}
62+
5263
footer {
53-
position: fixed;
54-
bottom: 0;
55-
text-align: center;
64+
display: flex;
65+
justify-content: center;
66+
align-items: center;
5667
}
5768
/* ====== Articles Grid Layout ====
5869
Setting the rules for how articles are placed in the main element.
@@ -86,4 +97,4 @@ article {
8697
> img {
8798
grid-column: span 3;
8899
}
89-
}
100+
}

0 commit comments

Comments
 (0)