Skip to content

Commit 0a5863d

Browse files
committed
Completed Exercise
1 parent 9b80dc5 commit 0a5863d

2 files changed

Lines changed: 41 additions & 10 deletions

File tree

Wireframe/index.html

Lines changed: 26 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -13,16 +13,32 @@ <h1>Wireframe</h1>
1313
This page talks about wireframe.
1414
</p>
1515
</header>
16-
<main>
17-
<article>
18-
<img src="placeholder.svg" alt="" />
19-
<h2>Title</h2>
20-
<p>
21-
Lorem ipsum dolor sit amet consectetur adipisicing elit. Quisquam,
22-
voluptates. Quisquam, voluptates.
23-
</p>
24-
<a href="">Read more</a>
25-
</article>
16+
<main>
17+
18+
<!-- Article 1: Questions 1 -->
19+
<article>
20+
<img src="https://media.geeksforgeeks.org/wp-content/uploads/20240702120959/Readme1.png" alt="GitHub README image" />
21+
<h2>1. What is the purpose of a README file?</h2>
22+
<p>A README file provides essential information about a project, including its purpose, usage instructions, and setup requirements.</p>
23+
<a href="https://docs.github.com/en/repositories/managing-your-repositorys-settings-and-features/customizing-your-repository/about-readmes" target="_blank">Read more</a>
24+
</article>
25+
26+
<!-- Article 2: Question 2 -->
27+
<article>
28+
<img src="https://images.prismic.io/prismic-main/Zoa6gh5LeNNTwzHJ_web_design_wireframe.jpeg?auto=format,compress" alt="Wireframe example image" />
29+
<h2>2. What is the purpose of a wireframe?</h2>
30+
<p>A wireframe is a visual guide that represents the skeletal framework of a website or application, used to plan layout and functionality.</p>
31+
<a href="https://balsamiq.com/blog/what-are-wireframes/" target="_blank">Read more</a>
32+
</article>
33+
34+
<!-- Article 3: Question 3 -->
35+
<article>
36+
<img src="https://miro.medium.com/v2/1*K9scAx1Ezd-KJFabaYseCw.jpeg" alt="GitHub Branch explanation image" />
37+
<h2>3. What is a branch in Git?</h2>
38+
<p>A branch in Git is a separate line of development that allows you to work on different versions of a project simultaneously without affecting the main codebase.</p>
39+
<a href="https://docs.github.com/en/pull-requests/collaborating-with-pull-requests/proposing-changes-to-your-work-with-pull-requests/about-branches" target="_blank">Read more</a>
40+
</article>
41+
2642
</main>
2743
<footer>
2844
<p>

Wireframe/style.css

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -87,3 +87,18 @@ article {
8787
grid-column: span 3;
8888
}
8989
}
90+
91+
header {
92+
text-align: center;
93+
}
94+
95+
footer {
96+
position: fixed;
97+
bottom: 0;
98+
text-align: center;
99+
font-weight: 500;
100+
border: solid black 2px;
101+
width: 100%;
102+
background-color: white;
103+
color: black;
104+
}

0 commit comments

Comments
 (0)