33 lines
1.0 KiB
HTML
33 lines
1.0 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<meta http-equiv="X-UA-Compatible" content="ie=edge">
|
|
<link rel="stylesheet" href="style.css">
|
|
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0-beta3/css/all.min.css">
|
|
<title>Document</title>
|
|
<style>
|
|
|
|
</style>
|
|
<script defer src="script.js" ></script>
|
|
</head>
|
|
<body>
|
|
<main>
|
|
|
|
|
|
<textarea id="text" placeholder="enter word here to hear it..."></textarea>
|
|
<label for="speed">Speed</label>
|
|
<input type="number" name="speed" id="speed" min=".5" max="3" step=".5" value="1">
|
|
<div class="buttons_div">
|
|
<button class="buttons" id="play-button"><i class="fa fa-play-circle" aria-hidden="true"></i></button>
|
|
<button class="buttons" id="pause-button"><i class="fa fa-pause-circle" aria-hidden="true"></i></button>
|
|
<button class="buttons" id="stop-button"><i class="fa fa-stop-circle" aria-hidden="true"></i></button>
|
|
</div>
|
|
|
|
</main>
|
|
|
|
|
|
|
|
</body>
|
|
</html> |