Skip to content

Commit a7aef08

Browse files
committed
fixed validator errors and styled fonts of intro and content
1 parent e407242 commit a7aef08

2 files changed

Lines changed: 13 additions & 3 deletions

File tree

Wireframe/index.html

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ <h1>Code Hub</h1>
1515
</header>
1616
<main>
1717
<article>
18-
<img src="Readme.png" alt="README file illustration" id="readmeImg"/>
18+
<img src="Readme.png" alt="README file illustration"/>
1919
<h2>What is a README file?</h2>
2020
<p class="intro">
2121
A README is the front door of any software project — the first document a visitor reads when they encounter your code.
@@ -26,7 +26,7 @@ <h2>What is a README file?</h2>
2626
<a href="https://en.wikipedia.org/wiki/README" target="_blank">Read more</a>
2727
</article>
2828
<article>
29-
<img src="Wireframe1.png" alt="Wireframe illustration" id="readmeImg"/>
29+
<img src="Wireframe1.png" alt="Wireframe illustration"/>
3030
<h2>What is a WIREFRAME?</h2>
3131
<p class="intro">
3232
A wireframe is a skeletal blueprint of a digital interface — a low-fidelity sketch that maps out layout and structure before any visual design begins.
@@ -37,7 +37,7 @@ <h2>What is a WIREFRAME?</h2>
3737
<a href="https://en.wikipedia.org/wiki/Website_wireframe" target="_blank">Read more</a>
3838
</article>
3939
<article>
40-
<img src="git-branch.png" alt="Git branch illustration" id="readmeImg"/>
40+
<img src="git-branch.png" alt="Git branch illustration"/>
4141
<h2>What is a BRANCH in Git?</h2>
4242
<p class="intro">
4343
A branch in Git is an independent line of development — a lightweight pointer that lets you work on changes in isolation without affecting the main codebase.

Wireframe/style.css

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -86,6 +86,16 @@ article {
8686
> img {
8787
grid-column: span 3;
8888
}
89+
90+
.intro {
91+
font-size: 1.25em;
92+
font-weight: bold;
93+
}
94+
95+
.content {
96+
font-size: 0.9em;
97+
opacity: 0.8;
98+
}
8999
}
90100
footer {
91101
padding-bottom: var(--space);

0 commit comments

Comments
 (0)