Récupération du cours SVG

This commit is contained in:
2025-10-30 13:08:21 +01:00
commit aae4193595
171 changed files with 15661 additions and 0 deletions

18
exercices/page2.html Executable file
View File

@@ -0,0 +1,18 @@
<!doctype html>
<html>
<head>
<title>SVG</title>
<style>
#box {
background: url(dessin.svg);
background-size: cover;
width: 300px;
height: 300px;
}
</style>
</head>
<body>
<h1>Mon dessin</h1>
<div id="box"></div>
</body>
</html>