5.2_exercise

This commit is contained in:
Andrea Bianchi
2026-03-31 14:59:47 +09:00
parent baa0d8559f
commit bd1954bc3b
4 changed files with 100 additions and 0 deletions

22
w5_2_FP/index.html Normal file
View File

@@ -0,0 +1,22 @@
<!DOCTYPE html>
<html>
<head>
<link rel="stylesheet" type="text/css" href="./style.css" />
<meta charset="utf-8" />
</head>
<body>
<ul id="list">
<li><span class="blue">Christian</span> <span class="pink">BALE</span></li>
<li><span class="blue">Cate</span> <span class="pink">BLANCHETT</span></li>
<!-- ... -->
</ul>
<script defer type="module" src="solution-index.js"></script>
</body>
</html>