Skip to content

Commit 3001081

Browse files
committed
Complete HTML structure with 3 articles
1 parent 90d3a77 commit 3001081

1 file changed

Lines changed: 12 additions & 15 deletions

File tree

Wireframe/index.html

Lines changed: 12 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -8,43 +8,40 @@
88
</head>
99
<body>
1010
<header>
11-
<h1>Wireframe</h1>
11+
<h1>Web Development Basics</h1>
1212
<p>
13-
This is the default, provided code and no changes have been made yet.
13+
This page explains some basic concepts in web development, including what a README file is, what a wireframe is, and how Git branches are used. These ideas help developers plan, build, and manage websites more effectively.
1414
</p>
1515
</header>
1616
<main>
1717
<article>
1818
<img src="placeholder.svg" alt="" />
19-
<h2>Title</h2>
19+
<h2>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 is a plain text or Markdown document (usually named README.md) placed at the root of a project folder. It serves as a project's "welcome mat," giving visitors and contributors a quick summary of what the project does, how to install it, and how to use it.
2322
</p>
24-
<a href="">Read more</a>
23+
<a href="https://www.makeareadme.com/">Read more</a>
2524
</article>
2625
<article>
2726
<img src="placeholder.svg" alt="" />
28-
<h2>Title</h2>
27+
<h2>The Purpose of a Wireframe</h2>
2928
<p>
30-
Lorem ipsum dolor sit amet consectetur adipisicing elit. Quisquam,
31-
voluptates. Quisquam, voluptates.
29+
A wireframe is a simple visual layout of a webpage or application. It helps developers and designers plan the structure and content before building the final product.
3230
</p>
33-
<a href="">Read more</a>
31+
<a href="https://www.nngroup.com/articles/wireframes/">Read more</a>
3432
</article>
3533
<article>
3634
<img src="placeholder.svg" alt="" />
37-
<h2>Title</h2>
35+
<h2>The Purpose of Git Branches</h2>
3836
<p>
39-
Lorem ipsum dolor sit amet consectetur adipisicing elit. Quisquam,
40-
voluptates. Quisquam, voluptates.
37+
A Git branch is a separate workspace used to make changes safely. Developers use branches to work on new features without affecting the main project.
4138
</p>
42-
<a href="">Read more</a>
39+
<a href="https://git-scm.com/docs/git-branch">Read more</a>
4340
</article>
4441
</main>
4542
<footer>
4643
<p>
47-
This is the default, provided code and no changes have been made yet.
44+
© Web Development Basics - Learning Project
4845
</p>
4946
</footer>
5047
</body>

0 commit comments

Comments
 (0)