Skip to content

Commit a6a9700

Browse files
- Updated introductory text for clarity
- Added external links to articles with styled buttons - Centered header text and adjusted footer alignment - Enhanced button styles for better user interaction
1 parent 53245bd commit a6a9700

2 files changed

Lines changed: 37 additions & 10 deletions

File tree

Wireframe/index.html

Lines changed: 9 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -3,14 +3,14 @@
33
<head>
44
<meta charset="UTF-8" />
55
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
6-
<title>Wireframe</title>
6+
<title>Developer Fundamentals</title>
77
<link rel="stylesheet" href="style.css" />
88
</head>
99
<body>
1010
<header>
11-
<h1>Wireframe</h1>
11+
<h1>Developer Fundamentals</h1>
1212
<p>
13-
A wireframe is a simple visual guide used to plan the layout of a webpage or app. It focuses on structure rather than design, showing where elements like headers, navigation, content, and images will be placed. Wireframes help developers and designers understand how a page will work before adding colors, images, or styling.
13+
Learn the essentials of building and managing projects in tech — from wireframes for planning designs, to Git branches for version control, and README files for clear project documentation.
1414
</p>
1515
</header>
1616
<main>
@@ -20,7 +20,7 @@ <h2>What is a Wireframe?</h2>
2020
<p>
2121
A wireframe is a simple visual guide used to plan the layout of a webpage or app. It focuses on structure rather than design, showing where elements like headers, navigation, content, and images will be placed. Wireframes help developers and designers understand how a page will work before adding colors, images, or styling.
2222
</p>
23-
<a href="">Read more</a>
23+
<a class="button" href="https://www.w3schools.com/css/css_website_layout.asp" target="_blank" rel="noreferrer">Read more</a>
2424
</article>
2525

2626
<article>
@@ -29,7 +29,9 @@ <h2>What is a Readme.md file</h2>
2929
<p>
3030
A README.md file is the main documentation file in a project. It explains what the project is about, how it works, and how to use it. Written in Markdown, it helps developers and users quickly understand the purpose of the project and how to get started.
3131
</p>
32-
<a href="">Read more</a>
32+
33+
<a class="button" href="https://www.geeksforgeeks.org/git/what-is-readme-md-file/" target="_blank" rel="noreferrer">Read more</a>
34+
3335
</article>
3436

3537
<article>
@@ -38,12 +40,12 @@ <h2>What is a branch in GIT?</h2>
3840
<p>
3941
A branch in Git is a separate version of your code that allows you to work on new features or fixes without affecting the main project. It helps developers collaborate safely by keeping changes isolated until they are ready to be merged into the main branch.
4042
</p>
41-
<a href="">Read more</a>
43+
<a class="button" href="https://www.w3schools.com/git/git_branch.asp" target="_blank" rel="noreferrer">Read more</a>
4244
</article>
4345
</main>
4446
<footer>
4547
<p>
46-
This is the default, provided code and no changes have been made yet.
48+
Shafiek Walker | ITP MAY 2026
4749
</p>
4850
</footer>
4951
</body>

Wireframe/style.css

Lines changed: 28 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,7 @@ body {
3030
background: var(--paper);
3131
color: var(--ink);
3232
font: var(--font);
33+
3334
}
3435
a {
3536
padding: var(--space);
@@ -45,14 +46,20 @@ svg {
4546
Setting the overall rules for page regions
4647
https://www.w3.org/WAI/tutorials/page-structure/regions/
4748
*/
49+
50+
header {
51+
text-align: center;
52+
max-width: var(--container);
53+
margin: 0 auto calc(var(--space) * 4) auto;
54+
}
4855
main {
4956
max-width: var(--container);
5057
margin: 0 auto calc(var(--space) * 4) auto;
5158
}
5259
footer {
53-
position: fixed;
54-
bottom: 0;
55-
text-align: center;
60+
display: flex;
61+
justify-content: center; /* Centers horizontally */
62+
align-items: center;
5663
}
5764
/* ====== Articles Grid Layout ====
5865
Setting the rules for how articles are placed in the main element.
@@ -87,3 +94,21 @@ article {
8794
grid-column: span 3;
8895
}
8996
}
97+
98+
button,
99+
.button {
100+
display: inline-block;
101+
background-color: rgb(134, 134, 143);
102+
color: white;
103+
padding: 10px 20px;
104+
border: none;
105+
cursor: pointer;
106+
text-decoration: none;
107+
transition: 0.3s;
108+
}
109+
110+
button:hover,
111+
.button:hover {
112+
background-color: rgb(97, 97, 145);
113+
transform: scale(1.05);
114+
}

0 commit comments

Comments
 (0)