forked from WEB-IMB-WS2526/lab-development-imb
16 lines
349 B
HTML
16 lines
349 B
HTML
<!DOCTYPE html>
|
|
<html lang="de">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<title>Events</title>
|
|
</head>
|
|
<body>
|
|
<button id="klickButton">Klick mich!</button>
|
|
<p id="ausgabe">Noch nichts passiert...</p>
|
|
|
|
<input type="text" id="eingabe" placeholder="Tippe etwas ein">
|
|
<p id="eingabeAusgabe"></p>
|
|
|
|
<script src="02_events.js"></script>
|
|
</body>
|
|
</html> |