30 lines
599 B
HTML
30 lines
599 B
HTML
<!DOCTYPE html>
|
|
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8" />
|
|
|
|
<title>Music Graph</title>
|
|
|
|
<meta name="viewport" content="width=device-width,initial-scale=1" />
|
|
|
|
<meta name="description" content="" />
|
|
|
|
<link rel="icon" href="favicon.png" />
|
|
<style>
|
|
text {
|
|
pointer-events: none;
|
|
user-select: none;
|
|
}
|
|
image {
|
|
clip-path: inset(0% round 50%);
|
|
}
|
|
</style>
|
|
</head>
|
|
|
|
<body>
|
|
<svg width="1000" height="1000" viewBox="-500 -500 1000 1000"></svg>
|
|
<script src="dist/graph.js" type="module"></script>
|
|
</body>
|
|
</html>
|