svg-demo/zoom/index.html

21 lines
628 B
HTML
Raw Normal View History

2024-10-11 08:13:22 +00:00
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<title>SVG zoom</title>
<meta data-hid="viewport" name="viewport" content="width=device-width,initial-scale=1" />
<link rel="stylesheet" type="text/css" href="style.css" />
</head>
<body>
<header>
<div class="sale">
<img src="sale.svg" width="50" height="40" />
<img src="sale.svg" width="125" height="100" />
<img src="sale.svg" width="250" height="200" />
<img src="sale.svg" width="500" height="400" />
<img src="sale.svg" width="1000" height="800" />
<img src="sale.svg" width="2000" height="1600" />
</div>
</header>
</body>
</html>