Skip to content

Commit 358a238

Browse files
End part 2
1 parent e7cad34 commit 358a238

File tree

7 files changed

+42
-2
lines changed

7 files changed

+42
-2
lines changed

starter/02-HTML-Fundamentals/index.html

Lines changed: 42 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ <h1>📘 The Code Magazine</h1>
2929
<h2>The Basic Language of the Web: HTML</h2>
3030

3131
<img
32-
src="laura-jones.jpg"
32+
src="img/laura-jones.jpg"
3333
alt="Headshot of Laura Jones"
3434
width="50"
3535
height="50"
@@ -38,7 +38,7 @@ <h2>The Basic Language of the Web: HTML</h2>
3838
<p>Posted by <strong>Laura Jones</strong> on Monday, June 21st 2027</p>
3939

4040
<img
41-
src="post-img.jpg"
41+
src="img/post-img.jpg"
4242
alt="HTML code on a screen"
4343
width="500"
4444
height="200"
@@ -99,8 +99,48 @@ <h3>Why should you learn HTML?</h3>
9999
<li>To build web applications</li>
100100
<li>To impress friends To have fun 😃</li>
101101
</ul>
102+
102103
<p>Hopefully you learned something new here. See you next time!</p>
103104
</article>
105+
106+
<aside>
107+
<h4>
108+
<strong>Related posts</strong>
109+
</h4>
110+
<ul>
111+
<li>
112+
<img
113+
src="img/related-1.jpg"
114+
alt="Person programming"
115+
width="75"
116+
height="75"
117+
/>
118+
<a href="#">How to Learn Web Deveploment</a>
119+
<p>By Jonas Schmedtmann</p>
120+
</li>
121+
<li>
122+
<img
123+
src="img/related-2.jpg"
124+
alt="Related Photo2"
125+
width="75"
126+
height="75"
127+
/>
128+
<a href="#">The Unknown Powers of CSS</a>
129+
<p>By Jim Dillon</p>
130+
</li>
131+
<li>
132+
<img
133+
src="img/related-3.jpg"
134+
alt="JavaScript code on a screen"
135+
width="75"
136+
height="75"
137+
/>
138+
<a href="#">Why JavaScript is Awesome</a>
139+
<p>By Matilda</p>
140+
</li>
141+
</ul>
142+
</aside>
143+
104144
<footer>Copyright &copy; 2027 by The Code Magazine.</footer>
105145
</body>
106146
</html>

0 commit comments

Comments
 (0)