Skip to content
Snippets Groups Projects
Select Git revision
  • ad8fa023dc710fb9e10c9ad54f4db31c013271be
  • main default protected
2 results

index.html

Blame
  • user avatar
    v4nkor authored
    ad8fa023
    History
    index.html 642 B
    <!DOCTYPE html>
    <html lang="en">
      <head>
        <meta charset="utf-8" />
        <meta http-equiv="X-UA-Compatible" content="IE=edge" />
        <meta name="viewport" content="width=device-width" />
    
        <title>Phrase matcher</title>
    
        <link rel="stylesheet" href="style.css" />
      </head>
    
      <body>
        <h1>Phrase matcher</h1>
        <p>Press the button then say the phrase to test the recognition.</p>
    
        <button>Start new test</button>
    
        <div>
          <p class="phrase">Phrase...</p>
          <p class="result">Right or wrong?</p>
          <p class="output">...diagnostic messages</p>
        </div>
    
        <script src="script.js"></script>
      </body>
    </html>