22 lines
423 B
HTML
22 lines
423 B
HTML
<!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> |