Skip to content

Commit 731dc74

Browse files
committed
URL Not Found (404) error fixed
1 parent faf93fe commit 731dc74

1 file changed

Lines changed: 35 additions & 27 deletions

File tree

Wireframe/index.html

Lines changed: 35 additions & 27 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
<!DOCTYPE html>
1+
<!doctype html>
22
<html lang="en">
33
<head>
44
<meta charset="UTF-8" />
@@ -9,51 +9,59 @@
99
<body>
1010
<header>
1111
<h1>Understanding README Files, Wireframes and Git Branches</h1>
12-
<p>
13-
A simple guide explaining three important web development concepts.</p>
12+
<p>A simple guide explaining three important web development concepts.</p>
1413
</header>
1514
<main>
1615
<!--Top article (full-width)-->
1716
<article class="top-article" id="readme-article">
1817
<img src="placeholder.svg" alt="Illustration of a README file" />
1918
<h2>What is the purpose of a README file?</h2>
2019
<p>
21-
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.
20+
A README file explains what a project is about, how to use it, and any
21+
important information someone needs before working with the project
22+
code.
2223
</p>
2324
<a href="https://www.makeareadme.com/" target="_blank">Read more</a>
2425
</article>
2526

2627
<!--Bottom two articles side -by-side-->
2728

28-
<section class="bottom-articles">
29-
30-
<article id="wireframe-article">
31-
<img src="placeholder.svg" alt="Example of a webpage wireframe"/>
32-
<h2>What is the purpose of a wireframe?</h2>
33-
<p>
34-
A wireframe is a simple layout plan that shows where content will go on a webpage before you start designing or coding.
35-
</p>
36-
37-
<a href="https://careerfoundry.com/en/blog/ux-design/what-is-a-wireframe/" target="_blank">Read more</a>
38-
</article>
39-
40-
<article id="branch-article">
41-
<img src="placeholder.svg" alt="Diagram showing Git branches"/>
42-
<h2>What is a branch in Git?</h2>
43-
<p>
44-
A Git baranch lets developers work on new features without affecting the main project. When finished, the branch can be merged back in.
45-
</p>
46-
<a href="https://www.atlassian.com/git/tutorials/using-branches" target="_blank">Read more</a>
47-
</article>
29+
<section class="bottom-articles">
30+
<article id="wireframe-article">
31+
<img src="placeholder.svg" alt="Example of a webpage wireframe" />
32+
<h2>What is the purpose of a wireframe?</h2>
33+
<p>
34+
A wireframe is a simple layout plan that shows where content will go
35+
on a webpage before you start designing or coding.
36+
</p>
4837

49-
</section>
38+
<a
39+
href="https://careerfoundry.com/en/blog/ux-design/what-is-a-wireframe-guide/"
40+
target="_blank"
41+
>Read more</a
42+
>
43+
</article>
5044

45+
<article id="branch-article">
46+
<img src="placeholder.svg" alt="Diagram showing Git branches" />
47+
<h2>What is a branch in Git?</h2>
48+
<p>
49+
A Git baranch lets developers work on new features without affecting
50+
the main project. When finished, the branch can be merged back in.
51+
</p>
52+
<a
53+
href="https://www.atlassian.com/git/tutorials/using-branches"
54+
target="_blank"
55+
>Read more</a
56+
>
57+
</article>
58+
</section>
5159
</main>
5260
<footer>
5361
<p>
54-
Footers usually contain contact links and other information about the site overall
62+
Footers usually contain contact links and other information about the
63+
site overall
5564
</p>
56-
5765
</footer>
5866
</body>
5967
</html>

0 commit comments

Comments
 (0)