18 lines
251 B
HTML
18 lines
251 B
HTML
|
|
<!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>
|