Skip to content

Commit 32ddece

Browse files
Completed wireframe task
1 parent 762d3ae commit 32ddece

File tree

2 files changed

+32
-7
lines changed

2 files changed

+32
-7
lines changed

Wireframe/index.html

Lines changed: 27 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -10,23 +10,43 @@
1010
<header>
1111
<h1>Wireframe</h1>
1212
<p>
13-
This is the default, provided code and no changes have been made yet.
13+
This is an article explaining the wireframe structure of a webpage.
1414
</p>
1515
</header>
1616
<main>
1717
<article>
18-
<img src="placeholder.svg" alt="" />
19-
<h2>Title</h2>
18+
<img src="https://markdown.land/wp-content/uploads/2022/01/VSCode-markdown-preview-1024x470.png" alt="Readme file picture" />
19+
<h2>What is the purpose of a Readme file?</h2>
2020
<p>
21-
Lorem ipsum dolor sit amet consectetur adipisicing elit. Quisquam,
22-
voluptates. Quisquam, voluptates.
21+
A Readme file serves as a guide for users and developers, providing
22+
essential information about a project, including its purpose,
23+
installation instructions, usage guidelines, and contribution
24+
protocols.
2325
</p>
24-
<a href="">Read more</a>
26+
<a href="https://www.reddit.com/r/cs50/comments/x8965j/what_is_the_purpose_of_readme/">Read more</a>
27+
</article>
28+
<article>
29+
<img src="https://images.edrawsoft.com/articles/wireframe/wireframe-1.jpg" alt="Wireframe picture" />
30+
<h2>What is the purpose of a wireframe?
31+
</h2>
32+
<p>
33+
The purpose of a wireframe is to provide a visual guide that represents the skeletal framework of a website or application, helping to plan layout and functionality.
34+
</p>
35+
<a href="https://balsamiq.com/blog/what-are-wireframes/">Read more</a>
36+
</article>
37+
<article>
38+
<img src="https://git-scm.com/images/logos/downloads/Git-Logo-2Color.png" alt="Git logo" />
39+
<h2>What is a branch in Git?
40+
</h2>
41+
<p>
42+
A branch in Git is a separate line of development that allows multiple people to work on different features or fixes simultaneously without affecting the main codebase.
43+
</p>
44+
<a href="https://medium.com/@jacoblogan98/understanding-git-branching-5d01f3dda541">Read more</a>
2545
</article>
2646
</main>
2747
<footer>
2848
<p>
29-
This is the default, provided code and no changes have been made yet.
49+
Codeyourfuture Jan26 - Wireframe assignment
3050
</p>
3151
</footer>
3252
</body>

Wireframe/style.css

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,11 @@ main {
5151
}
5252
footer {
5353
position: fixed;
54+
left: 0;
5455
bottom: 0;
56+
width: 100%;
57+
background-color: #4b3a3a;
58+
color: white;
5559
text-align: center;
5660
}
5761
/* ====== Articles Grid Layout ====
@@ -87,3 +91,4 @@ article {
8791
grid-column: span 3;
8892
}
8993
}
94+
header {text-align: center;}

0 commit comments

Comments
 (0)