Advertisement
luistavares

HTML - Comandos por voz com a Web Speech API

Mar 23rd, 2023
727
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 0.61 KB | Source Code | 0 0
  1. <!DOCTYPE html>
  2. <html lang="pt-br">
  3.   <head>
  4.     <meta charset="utf-8" />
  5.     <title>Speech Commands</title>
  6.     <link rel="stylesheet" href="style.css" />
  7.   </head>
  8.   <body>
  9.     <h1>Comandos por voz com a Web Speech API</h1>
  10.     <p class="hints">Use os comandos: 'abrir Google', 'abrir w3 schools', 'criar parágrafo', 'criar título'.</p>
  11.     <div class="control">
  12.       <p class="output"><em>...Mensagens</em></p>
  13.       <button id="btn-start">Iniciar</button>
  14.       <button id="btn-stop">Parar</button>
  15.     </div>
  16.     <div id="box"></div>        
  17.     <script src="script.js"></script>
  18.   </body>
  19. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement