Skip to content

Commit 52c8352

Browse files
committed
Completed CHALLENGE jonasschmedtmann#1
1 parent 1fda6d7 commit 52c8352

File tree

7 files changed

+46
-2
lines changed

7 files changed

+46
-2
lines changed

myWork/02-HTML-Fundamentals/index.html

Lines changed: 46 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,11 +21,19 @@ <h1>📘 The Code Magazine</h1>
2121
<header>
2222
<h2>The Basic Language of the Web: HTML</h2>
2323

24-
<img src="laura-jones.jpg" alt="Photo of Laura Jones" width="50" />
24+
<img
25+
src="images/laura-jones.jpg"
26+
alt="Photo of Laura Jones"
27+
width="50"
28+
/>
2529

2630
<p>Posted by <strong>Laura Jones</strong> on Monday, June 21st 2027</p>
2731

28-
<img src="post-img.jpg" alt="HTML code on a screen" width="500" />
32+
<img
33+
src="images/post-img.jpg"
34+
alt="HTML code on a screen"
35+
width="500"
36+
/>
2937
</header>
3038

3139
<p>
@@ -93,6 +101,42 @@ <h3>Why should you learn HTML?</h3>
93101
<p>Hopefully you learned something new here. See you next time!</p>
94102
</article>
95103

104+
<aside>
105+
<h4>Related posts</h4>
106+
<ul>
107+
<li>
108+
<img
109+
src="images/related-1.jpg"
110+
alt="Learn Web Development"
111+
width="75"
112+
height="75"
113+
/>
114+
<a href="#">How to Learn Web Development</a>
115+
<p>By Jonas Schmedtmann</p>
116+
</li>
117+
<li>
118+
<img
119+
src="images/related-2.jpg"
120+
alt="Lightning Strike"
121+
width="75"
122+
height="75"
123+
/>
124+
<a href="#">The Unknown Powers of CSS</a>
125+
<p>By Jim Dillon</p>
126+
</li>
127+
<li>
128+
<img
129+
src="images/related-3.jpg"
130+
alt="Code on Screen"
131+
width="75"
132+
height="75"
133+
/>
134+
<a href="#">Why JavaScript is Awesome</a>
135+
<p>By Matilda</p>
136+
</li>
137+
</ul>
138+
</aside>
139+
96140
<footer>Copyright &copy; 2027 by The Code Magazine.</footer>
97141
</body>
98142
</html>

0 commit comments

Comments
 (0)