Skip to content

Commit faf93fe

Browse files
committed
Added images from the placeholder.svg folder
1 parent f7c71a9 commit faf93fe

2 files changed

Lines changed: 17 additions & 3 deletions

File tree

Wireframe/index.html

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ <h1>Understanding README Files, Wireframes and Git Branches</h1>
1515
<main>
1616
<!--Top article (full-width)-->
1717
<article class="top-article" id="readme-article">
18-
<img src="images/readme.png" alt="Illustration of a README file" />
18+
<img src="placeholder.svg" alt="Illustration of a README file" />
1919
<h2>What is the purpose of a README file?</h2>
2020
<p>
2121
A README file explains what a project is about, how to use it, and any important information someone needs before working with the project code.
@@ -28,7 +28,7 @@ <h2>What is the purpose of a README file?</h2>
2828
<section class="bottom-articles">
2929

3030
<article id="wireframe-article">
31-
<img src="images/wireframe.png" alt="Example of a webpage wireframe"/>
31+
<img src="placeholder.svg" alt="Example of a webpage wireframe"/>
3232
<h2>What is the purpose of a wireframe?</h2>
3333
<p>
3434
A wireframe is a simple layout plan that shows where content will go on a webpage before you start designing or coding.
@@ -38,7 +38,7 @@ <h2>What is the purpose of a wireframe?</h2>
3838
</article>
3939

4040
<article id="branch-article">
41-
<img src="images/git-branch.png" alt="Diagram showing Git branches"/>
41+
<img src="placeholder.svg" alt="Diagram showing Git branches"/>
4242
<h2>What is a branch in Git?</h2>
4343
<p>
4444
A Git baranch lets developers work on new features without affecting the main project. When finished, the branch can be merged back in.

Wireframe/style.css

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -95,4 +95,18 @@ article {
9595
gap: var(--space);
9696
}
9797

98+
header{
99+
text-align: center;
100+
}
101+
102+
footer {
103+
position: fixed;
104+
bottom: 0;
105+
left: 0;
106+
width: 100%;
107+
text-align: center;
108+
}
109+
110+
111+
98112

0 commit comments

Comments
 (0)