grid/static/index.html

17 lines
380 B
HTML
Raw Normal View History

2023-01-09 20:51:11 +00:00
<html>
<head>
<meta charset="utf-8" />
2023-01-09 21:36:58 +00:00
<link rel="icon" href="data:,"><!-- disable favicon -->
2023-01-09 20:51:11 +00:00
<title>Webpack Starter</title>
2023-01-09 22:02:15 +00:00
<style>
body {
background-color: #000000;
color: #ffffff;
}
</style>
2023-01-09 20:51:11 +00:00
</head>
<body>
2023-01-09 21:36:58 +00:00
<script src="./main.js"></script>
2023-01-09 20:51:11 +00:00
</body>
</html>