Thibaud f67243a2ee
Some checks failed
Build and Deploy / build (push) Has been cancelled
Build and Deploy / deploy (push) Has been cancelled
find path in hrefs
2025-01-30 23:20:23 +01:00

26 lines
647 B
HTML

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
<style>
body {
background-color: black;
}
li > a {
color: white;
}
</style>
</head>
<body>
<ul>
<li><a href="bezier-1.html">Bezier demo #1</a></li>
<li><a href="bezier-2.html">Bezier demo #2</a></li>
<li><a href="spline.html">Bezier spline demo</a></li>
<li><a href="image.html">Image demo</a></li>
<li><a href="move.html">Move demo</a></li>
</ul>
</body>
</html>