Files
AlgerMusicPlayer/index.html

25 lines
577 B
HTML
Raw Normal View History

2021-07-19 17:36:48 +08:00
<!DOCTYPE html>
<html lang="en">
2021-09-28 17:31:20 +08:00
<head>
<meta charset="UTF-8" />
<link rel="icon" href="/favicon.ico" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Vite App</title>
<link
rel="stylesheet"
2021-09-30 00:42:39 +08:00
href="//at.alicdn.com/t/font_2685283_5bo4ekd5wh.css"
2021-09-28 17:31:20 +08:00
/>
<link rel="stylesheet" href="./public/css/animate.css" />
<style>
:root {
--animate-delay: 0.5s;
}
</style>
</head>
2021-07-19 17:36:48 +08:00
2021-09-28 17:31:20 +08:00
<body>
<div id="app"></div>
<script type="module" src="/src/main.ts"></script>
</body>
</html>