Files
whisper-transcript/demo/index.html
2025-01-08 14:01:53 +09:00

836 B

<html lang="en-GB"> <head> <style> body { background: #fafafa; font-size: 1.5em; font-family: -apple-system,BlinkMacSystemFont,Segoe UI,Roboto,Inter,Helvetica,Arial,sans-serif; margin: 5% 10% 5% 10%; background-color: black; } </style> </head>
<script type="module"> import { html, render } from 'lit'; import '../whisper-transcript.js'; render( html` `, document.querySelector('#demo') ); </script> </html>