Récupération du cours SVG
This commit is contained in:
18
exercices/page2.html
Executable file
18
exercices/page2.html
Executable 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>
|
||||
Reference in New Issue
Block a user