Skip to content

Commit 5671910

Browse files
committed
changed images
1 parent a7b8a25 commit 5671910

6 files changed

Lines changed: 80 additions & 10 deletions

File tree

Form-Controls/results.html

Whitespace-only changes.

Form-Controls/style.css

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
2+
form {
3+
display: flex;
4+
flex-direction: column;
5+
gap: 1rem;
6+
font-family: 'Times New Roman', Times, serif;
7+
8+
}
9+
label {
10+
text-transform:uppercase,
11+
}
12+
.form-group {
13+
14+
display: grid,
15+
}
16+
17+
input {
18+
background-color: lightgray;
19+
color: black;
20+
border: none;
21+
padding: 1ex 2ex,
22+
}
23+
1.99 MB
Loading

Wireframe/images/image1.jpg

1.99 MB
Loading

Wireframe/index.html

Lines changed: 34 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -10,23 +10,51 @@
1010
<header>
1111
<h1>Wireframe</h1>
1212
<p>
13-
This is the default, provided code and no changes have been made yet.
13+
A wireframe is a basic, two-dimensional blueprint or outline of
14+
a website or app interface
1415
</p>
1516
</header>
1617
<main>
1718
<article>
18-
<img src="placeholder.svg" alt="" />
19-
<h2>Title</h2>
19+
20+
<img src="images/image1.jpg" alt="" />
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 is a document that provides information about a project,
24+
including its purpose, how to use it, and any other relevant details.
25+
It serves as a guide for users and developers who want to understand
26+
the project and contribute to it.
27+
2328
</p>
2429
<a href="">Read more</a>
30+
</article>
31+
32+
<article>
33+
<img src="placeholder.svg" alt="" />
34+
<h2>What is the purpose of a wireframe?</h2>
35+
<p>
36+
A wireframe is a visual representation of a website or app's layout and
37+
structure. It serves as a blueprint for the design and development
38+
process, allowing designers and developers to plan the user interface
39+
and user experience before creating the final product.</p>
40+
<a href="">Read more</a>
41+
</article>
42+
43+
<article>
44+
<img src="placeholder.svg" alt="" />
45+
<h2>What is a branch?</h2>
46+
<p>
47+
A branch in version control is a separate line of development.
48+
It allows you to work on different features or experiments without affecting the main codebase.
49+
</p>
50+
<a href="">Read more</a>
51+
2552
</article>
53+
2654
</main>
2755
<footer>
2856
<p>
29-
This is the default, provided code and no changes have been made yet.
57+
CYF Module Onboarding - Wireframe Exercise 2026
3058
</p>
3159
</footer>
3260
</body>

Wireframe/style.css

Lines changed: 23 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -30,16 +30,33 @@ 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+
#picture1{
41+
42+
43+
44+
}
45+
46+
.grid-container{
47+
48+
}
49+
50+
51+
3952
img,
4053
svg {
4154
width: 100%;
4255
object-fit: cover;
56+
57+
}
58+
.picture {
59+
4360
}
4461
/* ====== Site Layout ======
4562
Setting the overall rules for page regions
@@ -48,11 +65,13 @@ https://www.w3.org/WAI/tutorials/page-structure/regions/
4865
main {
4966
max-width: var(--container);
5067
margin: 0 auto calc(var(--space) * 4) auto;
68+
5169
}
70+
5271
footer {
53-
position: fixed;
54-
bottom: 0;
55-
text-align: center;
72+
display: flex;
73+
justify-content: center;
74+
align-items: center;
5675
}
5776
/* ====== Articles Grid Layout ====
5877
Setting the rules for how articles are placed in the main element.
@@ -86,4 +105,4 @@ article {
86105
> img {
87106
grid-column: span 3;
88107
}
89-
}
108+
}

0 commit comments

Comments
 (0)