Files
doc-svg/exercices/page2.html

18 lines
251 B
HTML
Raw Normal View History

2025-10-30 13:08:21 +01:00
<!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>