startit/morse/index.html

18 lines
470 B
HTML
Raw Normal View History

2024-10-24 11:27:53 +02:00
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
<script src="modell.js"></script>
<script src="controller.js"></script>
<script src="view.js"></script>
</head>
<body>
<div id="app">
<script>updateView()</script>
<input type="text" onchange=""><button onclick="translate()">Button</button>
</div>
</body>
</html>