Skip to content

Commit 6f0f255

Browse files
add read more anchors
1 parent 64f65da commit 6f0f255

1 file changed

Lines changed: 47 additions & 0 deletions

File tree

Wireframe/index.html

Lines changed: 47 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -48,6 +48,53 @@ <h2 class="card__title">What is the purpose of a wireframe?</h2>
4848
</div>
4949
</article>
5050

51+
<article class="card">
52+
<div class="card__media fake-img" aria-hidden="true">
53+
<div class="diag left"></div>
54+
<div class="diag right"></div>
55+
</div>
56+
<div class="card__body">
57+
<h2 class="card__title">What is a branch in Git?</h2>
58+
<p class="card__summary">
59+
A Git branch is an independent line of development. It lets you make changes, experiment, and review work without affecting the main history. When ready, merge the branch back (often via pull request) to integrate tested, reviewed changes into the primary codebase.
60+
</p>
61+
<a class="btn" href="#git-branch-details">Read More</a>
62+
</div>
63+
</article>
64+
</section>
65+
66+
<!-- Optional “read more” anchors -->
67+
<section class="details" id="readme-details" aria-label="README details">
68+
<h3>README essentials</h3>
69+
<ul>
70+
<li>Project overview and goals</li>
71+
<li>Installation and quick start</li>
72+
<li>Usage examples and configuration</li>
73+
<li>Contributing guidelines and license</li>
74+
<li>Links to docs, issues, and support</li>
75+
</ul>
76+
</section>
77+
78+
<section class="details" id="wireframe-details" aria-label="Wireframe details">
79+
<h3>Why wireframe first</h3>
80+
<ul>
81+
<li>Clarifies content priority and layout</li>
82+
<li>Enables fast feedback before visuals</li>
83+
<li>De-risks scope and uncovers edge cases</li>
84+
<li>Acts as a blueprint for designers/devs</li>
85+
</ul>
86+
</section>
87+
88+
<section class="details" id="git-branch-details" aria-label="Git branch details">
89+
<h3>Branch workflow highlights</h3>
90+
<ul>
91+
<li>Create: git checkout -b feature/name</li>
92+
<li>Commit work locally and push the branch</li>
93+
<li>Open a pull request for review and CI</li>
94+
<li>Merge, then delete the branch when done</li>
95+
</ul>
96+
</section>
97+
5198
</main>
5299
<footer>
53100
<p>

0 commit comments

Comments
 (0)