Add files via upload

This commit is contained in:
Dmitry 2025-03-17 18:02:39 +03:00 committed by GitHub
parent 92537a37e9
commit 227132a1ce
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
3 changed files with 142 additions and 0 deletions

View file

@ -0,0 +1,14 @@
<!DOCTYPE html>
<html lang="ru">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>SVG с использованием <object></title>
</head>
<body>
<h1>Пример SVG с использованием тега &lt;object&gt;</h1>
<object type="image/svg+xml" data="image.svg" width="200" height="200">
Ваш браузер не поддерживает SVG
</object>
</body>
</html>