-
Notifications
You must be signed in to change notification settings - Fork 2
/
index.html
26 lines (25 loc) · 1007 Bytes
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
<html lang="en-US">
<head>
<title>Trombone.js</title>
<meta name="description" content="Use your pointer - up/down changes partial; left/right moves the slide; press to play">
<meta property="og:title" content="Trombone.js - a digital trombone for your web browser">
<meta property="og:description" content="Use your pointer - up/down changes partial; left/right moves the slide; press to play">
<meta property="og:image" content="https://www.mywebsite.com/image.jpg">
<meta property="og:image:alt" content="Trombone">
<meta property="og:type" content="website">
<meta name="twitter:card" content="summary">
<meta property="og:url" content="https://jdauriemma.com/trombone.js">
<link rel="canonical" href="https://jdauriemma.com/trombone.js">
<style>
body {
margin: 0;
overflow: hidden;
position: fixed;
}
</style>
</head>
<body>
<main id="app"></main>
</body>
<script src="dist/bundle.js"></script>
</html>