Created
March 27, 2019 13:42
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!DOCTYPE html> | |
<head> | |
<meta charset="utf-8"> | |
<meta http-equiv="X-UA-Compatible" content="IE=edge"> | |
<title>Voice Controlled Notes App</title> | |
<meta name="description" content=""> | |
<meta name="viewport" content="width=device-width, initial-scale=1"> | |
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/shoelace-css/1.0.0-beta16/shoelace.css"> | |
<link rel="stylesheet" href="styles.css"> | |
</head> | |
<body> | |
<div class="container"> | |
<h1>Voice Controlled Drone</h1> | |
<p class="page-description">A tiny app that allows you to control AR drone using voice</p> | |
<h3 class="no-browser-support">Sorry, Your Browser Doesn't Support the Web Speech API. Try Opening This Demo In Google Chrome.</h3> | |
<div class="app"> | |
<h3>Give the command</h3> | |
<div class="input-single"> | |
<textarea id="note-textarea" placeholder="Create a new note by typing or using voice recognition." rows="6"></textarea> | |
</div> | |
<button id="start-record-btn" title="Start Recording">Start Recognition</button> | |
<button id="pause-record-btn" title="Pause Recording">Pause Recognition</button> | |
<p id="recording-instructions">Press the <strong>Start Recognition</strong> button and allow access.</p> | |
</div> | |
</div> | |
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script> | |
<script src="script.js"></script> | |
</body> | |
</html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment