monorepo/music-player/client/index.html

18 lines
390 B
HTML
Raw Normal View History

2023-01-27 16:03:40 +00:00
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Music Player</title>
</head>
<body>
<h1 class="js-title">Placeholder Title</h1>
<p class="js-weather"></p>
<script src="./lodash.js" type="module"></script>
<script src="./dist/main.js" type="module"></script>
</body>
</html>