24 lines
562 B
HTML
Executable File
24 lines
562 B
HTML
Executable File
<html lang="en">
|
|
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>Document</title>
|
|
<link rel="stylesheet" href="style.css">
|
|
<script src="speak.js/speakClient.js"></script>
|
|
</head>
|
|
|
|
<body>
|
|
<div id="main">
|
|
<div id="buttons">
|
|
<button onclick="countUp()">+1</button>
|
|
<button onclick="countDown()">-1</button>
|
|
</div>
|
|
<div id="numDiv" id="audio">0</div>
|
|
|
|
</div>
|
|
<div></div>
|
|
<script src="script.js"></script>
|
|
</body>
|
|
|
|
</html> |