Skip to content

Commit 120f282

Browse files
committed
finish the project
1 parent f9a3ec0 commit 120f282

File tree

5 files changed

+23
-15
lines changed

5 files changed

+23
-15
lines changed

Wireframe/images/branch.webp

382 KB
Binary file not shown.

Wireframe/images/readme.webp

222 KB
Binary file not shown.

Wireframe/images/wireframe.png

55.4 KB
Loading

Wireframe/index.html

Lines changed: 14 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -10,41 +10,41 @@
1010
<header>
1111
<h1>Wireframe</h1>
1212
<p>
13-
This is the default, provided code and no changes have been made yet.
13+
Wireframes are simple visual guides that represent the skeletal framework of a website.
1414
</p>
1515
</header>
1616
<main>
1717
<article>
18-
<img src="placeholder.svg" alt="" />
19-
<h2>Title</h2>
18+
<img src="/Wireframe/images/readme.webp" alt="readme" />
19+
<h2>README file</h2>
2020
<p>
21-
Lorem ipsum dolor sit amet consectetur adipisicing elit. Quisquam,
22-
voluptates. Quisquam, voluptates.
21+
A file that provides important information about a project.
22+
It usually contains details like the project's purpose and version.
2323
</p>
2424
<a href="">Read more</a>
2525
</article>
2626
<article>
27-
<img src="placeholder.svg" alt="" />
28-
<h2>Title</h2>
27+
<img src="/Wireframe/images/wireframe.png" alt="wireframe" />
28+
<h2>wireframe</h2>
2929
<p>
30-
Lorem ipsum dolor sit amet consectetur adipisicing elit. Quisquam,
31-
voluptates. Quisquam, voluptates.
30+
A visual guide used to design the layout and structure of a website or application.
31+
It shows the basic arrangement of elements and text.
3232
</p>
3333
<a href="">Read more</a>
3434
</article>
3535
<article>
36-
<img src="placeholder.svg" alt="" />
37-
<h2>Title</h2>
36+
<img src="/Wireframe/images/branch.webp" alt="Git Branch" height="420"/>
37+
<h2>Git Branch</h2>
3838
<p>
39-
Lorem ipsum dolor sit amet consectetur adipisicing elit. Quisquam,
40-
voluptates. Quisquam, voluptates.
39+
A branch in Git is like a parallel version of a repository. It allows you to
40+
work on different features or bug fixes independently
4141
</p>
4242
<a href="">Read more</a>
4343
</article>
4444
</main>
4545
<footer>
4646
<p>
47-
This is the default, provided code and no changes have been made yet.
47+
&copy; 2025 Wireframe. All rights reserved.
4848
</p>
4949
</footer>
5050
</body>

Wireframe/style.css

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,7 @@ body {
3131
color: var(--ink);
3232
font: var(--font);
3333
margin: 0%;
34+
background:gray;
3435
}
3536

3637
a {
@@ -58,7 +59,7 @@ footer {
5859
position: fixed;
5960
bottom: 0;
6061
text-align: center;
61-
background: turquoise;
62+
background: rgb(99, 97, 97);
6263
width: 100%;
6364
}
6465
/* ====== Articles Grid Layout ====
@@ -83,6 +84,8 @@ Keeping things orderly and separate is the key to good, simple CSS.
8384
*/
8485
article {
8586
border: var(--line);
87+
border-radius: 15px;
88+
overflow: hidden;
8689
padding-bottom: var(--space);
8790
text-align: left;
8891
display: grid;
@@ -94,3 +97,8 @@ article {
9497
grid-column: span 3;
9598
}
9699
}
100+
101+
102+
#img3{
103+
height:"420px";
104+
}

0 commit comments

Comments
 (0)