Skip to content

Commit f222a89

Browse files
committed
Refactor code structure for improved readability
1 parent f464a2a commit f222a89

2 files changed

Lines changed: 11 additions & 8 deletions

File tree

Wireframe/index.html

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -12,18 +12,18 @@ <h1>Web Development & Planning</h1>
1212
<p>Here are some useful steps & information to help you get started with web development.</p>
1313
</header>
1414
<main>
15-
<article>
15+
<section>
1616
<img src="../Wireframe/img/Wireframe1.png" alt="wireframe" />
1717
<h2>Wireframe</h2>
1818
<p>
19-
What is the purpose of a wireframe? Think of "Wireframe" as the Architectural blueprint of a website or App.
19+
What is the purpose of a wireframe? Think of "Wireframe" as the Architectural blueprint of a website or App.
2020
A visual guide that outlines the structure, layout and placement of elements on a website.
2121
</p>
2222
<a href="https://www.figma.com/resource-library/what-is-wireframing/">Read more</a>
23-
</article>
23+
</section>
2424
<section>
2525
<img src="./img/readmeimg.png" alt="README File" />
26-
<h3>README File</h3>
26+
<h2>README File</h2>
2727
<p>
2828
What is the purpose of a README file? It serves as the introductory guide and instruction manual for a project,
2929
explaining what the software does, how to install and run it, and how others can contribute to it.
@@ -32,14 +32,14 @@ <h3>README File</h3>
3232
</section>
3333
<section>
3434
<img src="./img/Gitbranch1.jpg" alt="Git Branch" />
35-
<h3>Branch in Git</h3>
35+
<h2>Branch in Git</h2>
3636
<p>
37-
What is a branch in Git? A branch in Git is a seperate line of development that allows you to isolate your work,
37+
What is a branch in Git? A branch in Git is a separate line of development that allows you to isolate your work,
3838
experiment with new features, fix bugs or make changes without affecting the main codebase.
3939
</p>
4040
<a href="https://github.com/gitstandards/git-branching">Read more</a>
4141
</section>
42-
</main>
42+
</main>
4343
<footer>
4444
<p>
4545
Created By John Robinson. 2026

Wireframe/style.css

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,14 +51,17 @@ https://www.w3.org/WAI/tutorials/page-structure/regions/
5151
main {
5252
max-width: var(--container);
5353
margin: 0 auto calc(var(--space) * 4) auto;
54+
padding-bottom: 2rem;
5455
width: 70%;
5556
text-align: center;
5657
}
5758

5859
footer {
60+
position: fixed;
61+
bottom: 0;
5962
text-align: center;
6063
margin: 0 auto;
61-
padding: 2rem 0;
64+
padding: 0.5rem 0;
6265
background-color: white;
6366
width: 100%;
6467
border-top: var(--line);

0 commit comments

Comments
 (0)