forked from WEB-IB-SS26/development-ib
19 lines
345 B
HTML
19 lines
345 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="01_events.js"></script>
|
|
</body>
|
|
|
|
</html> |