Exercise 6.1

This commit is contained in:
Andrea Bianchi
2026-04-05 18:49:32 +09:00
parent d8cdc977e6
commit bd53e91476
3 changed files with 79 additions and 0 deletions

23
w6_1_FP/index.html Normal file
View File

@@ -0,0 +1,23 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
</head>
<body>
<div>
<button id="sort-by-name">Sort by Name</button>
<button id="sort-by-last">Sort by Last Name</button>
<button id="sort-by-age">Sort by Age</button>
</div>
<ul id="people-list"></ul>
<script defer src="index.js"></script>
</body>
</html>