internet-programming/lab4/index.html

13 lines
408 B
HTML
Raw Normal View History

2023-11-13 22:14:25 +04:00
<!doctype html>
2023-11-14 00:25:12 +04:00
<html lang="ru">
2023-11-13 22:14:25 +04:00
<head>
<meta charset="UTF-8" />
2023-11-15 23:17:59 +04:00
<link rel="icon" type="image/logo.png" href="src/Images/logo.png" />
2023-11-13 22:14:25 +04:00
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
2023-11-14 00:25:12 +04:00
<title>Каталог</title>
2023-11-13 22:14:25 +04:00
</head>
<body>
2023-11-15 23:17:59 +04:00
<div id="root" class="h-100 d-flex flex-column"></div>
2023-11-13 22:14:25 +04:00
<script type="module" src="/src/main.jsx"></script>
2023-11-15 23:17:59 +04:00
</body>
</html>