Skip to content

Commit 9d76947

Browse files
committed
Add article content
1 parent c44123d commit 9d76947

1 file changed

Lines changed: 39 additions & 11 deletions

File tree

Wireframe/index.html

Lines changed: 39 additions & 11 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" />
@@ -8,26 +8,54 @@
88
</head>
99
<body>
1010
<header>
11-
<h1>Wireframe</h1>
11+
<h1>The Utility of Definitions</h1>
1212
<p>
13-
This is the default, provided code and no changes have been made yet.
13+
And its pedagogical implications for the teaching of web development.
1414
</p>
1515
</header>
1616
<main>
1717
<article>
18-
<img src="placeholder.svg" alt="" />
19-
<h2>Title</h2>
18+
<img src="placeholder.svg" alt="Placeholder image for a README file" />
19+
<h2>What is a README file?</h2>
2020
<p>
21-
Lorem ipsum dolor sit amet consectetur adipisicing elit. Quisquam,
22-
voluptates. Quisquam, voluptates.
21+
A README file explains what a project is, how to use it, and any
22+
important setup instructions.
2323
</p>
24-
<a href="">Read more</a>
24+
<a
25+
href="https://www.freecodecamp.org/news/how-to-write-a-good-readme-file/"
26+
>
27+
Read more
28+
</a>
29+
</article>
30+
31+
<article>
32+
<img src="placeholder.svg" alt="Placeholder image for a wireframe" />
33+
<h2>What is a wireframe?</h2>
34+
<p>
35+
A wireframe is a simple plan for a webpage. It shows where the main
36+
content, images, and sections should go before the final design is
37+
added.
38+
</p>
39+
<a href="https://www.productplan.com/glossary/wireframe/">
40+
Read more
41+
</a>
42+
</article>
43+
44+
<article>
45+
<img src="placeholder.svg" alt="Placeholder image for a Git branch" />
46+
<h2>What is a branch in Git?</h2>
47+
<p>
48+
A branch is a separate version of a project where developers can make
49+
changes without affecting the main version straight away.
50+
</p>
51+
<a href="https://www.w3schools.com/git/git_branch.asp?remote=github">
52+
Read more
53+
</a>
2554
</article>
2655
</main>
56+
2757
<footer>
28-
<p>
29-
This is the default, provided code and no changes have been made yet.
30-
</p>
58+
<p>Created for the CodeYourFuture wireframe exercise.</p>
3159
</footer>
3260
</body>
3361
</html>

0 commit comments

Comments
 (0)