Skip to content

Commit 2c16dc3

Browse files
committed
What is branch in Git?
1 parent 4735988 commit 2c16dc3

2 files changed

Lines changed: 25 additions & 4 deletions

File tree

Wireframe/index.html

Lines changed: 16 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ <h1 class="center">Wireframe & Git Commits</h1>
1313
Practicing commits in Git
1414
</p>
1515
</header>
16-
<main>
16+
<div class="container">
1717
<article>
1818
<img src="https://img.freepik.com/premium-vector/wireframe-icon_933463-14328.jpg" alt="" />
1919
<h2>README File</h2>
@@ -22,9 +22,10 @@ <h2>README File</h2>
2222
</p>
2323
<a href="">Read more</a>
2424
</article>
25-
</main>
25+
</div>
2626

27-
<div>
27+
<div class="article-row">
28+
2829
<article>
2930
<img src="https://img.freepik.com/premium-vector/wireframe-icon_933463-14328.jpg" alt="" />
3031
<h2>The purpose of a Wireframe</h2>
@@ -34,12 +35,23 @@ <h2>The purpose of a Wireframe</h2>
3435
<a href="">Read more</a>
3536

3637

38+
</article>
39+
40+
<article>
41+
<img src="https://img.freepik.com/premium-vector/wireframe-icon_933463-14328.jpg" alt="" />
42+
<h2>What is a branch in Git?</h2>
43+
<p>
44+
A branch is a separate line of development. It allows developers to work on changes without affecting the main codebase.
45+
</p>
46+
<a href="">Read more</a>
47+
48+
3749
</article>
3850
</div>
3951

4052
<footer>
4153
<p>
42-
This is the default, provided code and no changes have been made yet.
54+
Designed with love by Monsur Abdulrahman - 2026
4355
</p>
4456
</footer>
4557
</body>

Wireframe/style.css

Lines changed: 9 additions & 0 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+
margin: 50px;
3334
}
3435
a {
3536
padding: var(--space);
@@ -98,6 +99,14 @@ article img {
9899
object-fit: fill;
99100
}
100101

102+
.article-row {
103+
grid-column: 1 / -1;
104+
display: grid;
105+
grid-template-columns: 1fr 1fr;
106+
margin-top: 30px;
107+
gap: var(--space);
108+
}
109+
101110
.center {
102111
text-align: center;
103112
}

0 commit comments

Comments
 (0)