Skip to content

Commit 54d28d7

Browse files
committed
feat: add aside section
1 parent de63859 commit 54d28d7

File tree

1 file changed

+32
-0
lines changed

1 file changed

+32
-0
lines changed

starter/02-HTML-Fundamentals/index.html

Lines changed: 32 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -69,6 +69,38 @@ <h3>Why should you learn HTML?</h3>
6969
</ul>
7070
<p>Hopefully you learned something new here. See you next time!</p>
7171

72+
<aside>
73+
<h4>Related posts</h4>
74+
75+
<ul>
76+
<li>
77+
<img
78+
src="img/related-1.jpg"
79+
alt="Person programming"
80+
width="75"
81+
width="75"
82+
/>
83+
<a href="#">How to Learn Web Development</a>
84+
<p>By Jonas Schmedtmann</p>
85+
</li>
86+
<li>
87+
<img src="img/related-2.jpg" alt="Lightning" width="75" heigth="75" />
88+
<a href="#">The Unknown Powers of CSS</a>
89+
<p>By Jim Dillon</p>
90+
</li>
91+
<li>
92+
<img
93+
src="img/related-3.jpg"
94+
alt="JavaScript code on a screen"
95+
width="75"
96+
height="75"
97+
/>
98+
<a href="#">Why JavaScript is Awesome</a>
99+
<p>By Matilda</p>
100+
</li>
101+
</ul>
102+
</aside>
103+
72104
<script src="" async defer></script>
73105
</body>
74106
</html>

0 commit comments

Comments
 (0)