pianello-web-app/index.html

25 lines
518 B
HTML
Raw Normal View History

2023-05-29 08:31:34 +02:00
<!DOCTYPE html>
<html>
2023-05-29 09:55:52 +02:00
<head>
<meta charset="utf-8">
<link rel="icon" href="/static/images/home-icon.png">
<meta name="viewport" content="width=device-width">
2023-05-31 16:01:47 +02:00
<link rel="manifest" href="/manifest.json">
<title>Pianello</title>
2023-05-29 09:55:52 +02:00
<link rel="stylesheet" href="/src/css/index.css">
</head>
<body>
<footer>
<bottom-app-bar></bottom-app-bar>
</footer>
<script src="/src/components/bottom-app-bar.js" type="module"></script>
2023-05-31 16:01:47 +02:00
<script src="/src/js/index.js" type="module"></script>
2023-05-29 09:55:52 +02:00
</body>
</html>