2024-07-17 10:13:45 +00:00
<!DOCTYPE html>
< html lang = "en" >
2024-11-25 08:45:54 +00:00
< head >
2024-07-17 10:13:45 +00:00
< meta charset = "UTF-8" / >
< meta name = "author" content = "https://github.com/charleprr" / >
< meta name = "viewport" content = "width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no" / >
< meta name = "keywords" content = "pianoverse, multiplayerpiano, multiplayer, piano, music, midi, play, online" / >
< meta name = "application-name" content = "Pianoverse" / >
2024-08-27 16:10:54 +00:00
< meta name = "mobile-web-app-capable" content = "yes" / >
2024-07-17 10:13:45 +00:00
< meta name = "apple-mobile-web-app-title" content = "Pianoverse" / >
2024-11-25 08:45:54 +00:00
< meta name = "theme-color" content = "#0c0d14" / >
< meta name = "msapplication-navbutton-color" content = "#0c0d14" / >
< meta name = "apple-mobile-web-app-status-bar-style" content = "#0c0d14" / >
2024-07-17 10:13:45 +00:00
< meta name = "description" content = "Play piano with your friends! Make music together on a virtual 88-key piano keyboard. MIDI support, velocity sensitivity, low latency and more..." / >
< meta property = "og:title" content = "Pianoverse - Play piano with your friends!" / >
< meta property = "og:type" content = "website" / >
2024-11-25 08:45:54 +00:00
< meta property = "og:url" content = "index.html" / >
< meta property = "og:image" content = "icons/light-192.png" / >
2024-07-17 10:13:45 +00:00
< meta property = "og:description" content = "Play piano with your friends! Make music together on a virtual 88-key piano keyboard. MIDI support, velocity sensitivity, low latency and more..." / >
< meta property = "og:site_name" content = "Pianoverse" / >
< meta property = "og:locale" content = "en_US" / >
< meta name = "twitter:title" content = "Pianoverse - Play piano with your friends!" >
< meta name = "twitter:description" content = "Play piano with your friends! Make music together on a virtual 88-key piano keyboard. MIDI support, velocity sensitivity, low latency and more..." >
2024-11-25 08:45:54 +00:00
< meta name = "twitter:image" content = "icons/light-192.png" >
2024-07-17 10:13:45 +00:00
< link rel = "icon" href = "favicon-dark.svg" type = "image/svg+xml" / >
2024-11-25 08:45:54 +00:00
< link rel = "alternate icon" type = "image/png" sizes = "32x32" href = "icons/dark-32.png" / >
< link rel = "alternate icon" type = "image/png" sizes = "16x16" href = "icons/dark-16.png" / >
< link rel = "apple-touch-icon" sizes = "192x192" href = "icons/dark-192.png" / >
2024-07-17 10:13:45 +00:00
< link rel = "manifest" href = "site.webmanifest" / >
2024-11-25 08:45:54 +00:00
< link rel = "preconnect" href = "https://fonts.googleapis.com/" / >
< link rel = "preconnect" href = "https://cdn.jsdelivr.net/" / >
< link rel = "canonical" href = "index.html" / >
2024-07-17 10:13:45 +00:00
< title > Pianoverse - Play piano with your friends!< / title >
2024-11-25 08:45:54 +00:00
< script src = "bundle.js" defer > < / script >
2024-11-25 15:25:15 +00:00
< script src = "extra.js" defer > < / script >
2024-11-25 08:45:54 +00:00
< script src = "https://kit.fontawesome.com/4044784fdc.js" crossorigin = "anonymous" > < / script >
2024-07-17 10:13:45 +00:00
< / head >
< body >
< noscript > Please enable JavaScript to use Pianoverse.< / noscript >
2024-11-25 08:45:54 +00:00
< pv-header > < / pv-header >
2024-07-17 10:13:45 +00:00
< div class = "app" >
2024-11-25 08:45:54 +00:00
< div class = "chat" >
2024-07-17 10:13:45 +00:00
< pv-users > < / pv-users >
< pv-chat > < / pv-chat >
< / div >
2024-11-25 08:45:54 +00:00
< div class = "piano" >
2024-07-17 10:13:45 +00:00
< pv-canvas > < / pv-canvas >
< pv-keys > < / pv-keys >
< / div >
< / div >
< / body >
2024-11-25 08:45:54 +00:00
< / html >