Skip to content

Commit 99d0fc9

Browse files
author
Yonas Gebre
committed
fixed broken link and correct format
1 parent d7b3fd2 commit 99d0fc9

3 files changed

Lines changed: 12 additions & 12 deletions

File tree

Wireframe/index.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@ <h2>Branch in Git</h2>
7171
<li>Experimenting with ideas</li>
7272
</ul>
7373

74-
<a href="branch_git.html">Read more</a>
74+
<a href="pages/branch_git.html">Read more</a>
7575
</article>
7676
</main>
7777
<footer>

Wireframe/pages/branch_git.html

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,9 @@
22
<html lang="en">
33
<meta charset="UTF-8" />
44
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
5-
<meta name="description" content="This article explains the concept of branches in Git,
5+
<meta name="description" content="This article explains the concept of branches in Git, their purpose, and how to use them effectively in your development workflow." />
6+
7+
</head>
68
<body>
79
<header>
810
<h1>Branch in Git</h1>

Wireframe/style.css

Lines changed: 8 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,8 @@ As well as useful links to learn more */
2424
--line: 2px solid;
2525
--container: 1280px;
2626
--yellow: oklch(0.8 0.2 90);
27+
--footer-color:#4D4D4D;
28+
--white:#FFF;
2729
}
2830
/* ====== Base Elements ======
2931
General rules for basic HTML elements in any context */
@@ -53,22 +55,18 @@ https://www.w3.org/WAI/tutorials/page-structure/regions/
5355
header{
5456
text-align: center;
5557
}
56-
main {
57-
max-width: var(--container);
58-
margin: 0 auto calc(var(--space) * 4) auto;
59-
}
60-
58+
/* sytle for the foooter, which should be at the bottom of the page, and have a different background colour to the main content.
59+
*/
6160
footer {
62-
height: 60px;
63-
background-color:#4D4D4D;
64-
color: #fff;
61+
height: 60px;
62+
background-color: var(--footer-color);
63+
color: var(--white);
6564
display: flex;
66-
align-items: center;
6765
justify-content: center;
6866
bottom: 0;
6967
}
7068
footer a {
71-
color: #fff;
69+
color: var(--white);
7270
text-decoration: none;
7371
}
7472
/* ====== Articles Grid Layout ====

0 commit comments

Comments
 (0)