Skip to content

Commit 70210d0

Browse files
committed
Codding Challenge jonasschmedtmann#1
1 parent 6f71eff commit 70210d0

File tree

8 files changed

+39
-5
lines changed

8 files changed

+39
-5
lines changed

starter/02-HTML-Fundamentals/content.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ In HTML, each element is made up of 3 parts:
1919
The opening tag
2020
The closing tag
2121
The actual element
22-
You can learn more at the MDN Web Docs.
22+
hy JavaScript
2323

2424
Why should you learn HTML?
2525

starter/02-HTML-Fundamentals/index.html

Lines changed: 38 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ <h1>📘 The Code Magazine</h1>
2424
<h2>The Basic Language of the Web: HTML</h2>
2525

2626
<img
27-
src="/starter/02-HTML-Fundamentals/laura-jones.jpg"
27+
src="/starter/02-HTML-Fundamentals/img/laura-jones.jpg"
2828
alt="Picture of the author: laura Jones"
2929
width="50"
3030
height="50"
@@ -35,7 +35,7 @@ <h2>The Basic Language of the Web: HTML</h2>
3535

3636
<!-- Images added to the html doc -->
3737
<img
38-
src="/starter/02-HTML-Fundamentals/post-img.jpg"
38+
src="/starter/02-HTML-Fundamentals/img/post-img.jpg"
3939
alt="HTML code on the screen"
4040
width="500"
4141
height="200"
@@ -106,8 +106,42 @@ <h3>Why should you learn HTML?</h3>
106106
<p>Hopefully you learned something new here. See you next time!</p>
107107
</article>
108108

109+
<aside>
110+
<p><strong>Related posts</strong></p>
111+
<ul>
112+
<li>
113+
<img
114+
src="./img/related-1.jpg"
115+
width="75"
116+
height="75"
117+
alt="Person programming"
118+
/>
119+
<a href="#">How to learn Web Development</a>
120+
<p>By Jonas Schmedtmann</p>
121+
</li>
122+
<li>
123+
<img
124+
src="./img/related-2.jpg"
125+
width="75"
126+
height="75"
127+
alt="Lighting in the sky"
128+
/>
129+
<a href="#">The unknown powers of CSS</a>
130+
<p>By Jim Dillion</p>
131+
</li>
132+
<li>
133+
<img
134+
src="./img/related-3.jpg"
135+
width="75"
136+
height="75"
137+
alt="Code on computer screen"
138+
/>
139+
<a href="#">Why JavaScript is Awesome</a>
140+
<p>By Matilda</p>
141+
</li>
142+
</ul>
143+
</aside>
144+
109145
<footer>Copyright &copy; 2027 by the Code Magazine</footer>
110146
</body>
111147
</html>
112-
113-
<!-- semantics -->

0 commit comments

Comments
 (0)