forked from WEB-IMB-WS2526/lab-development-imb
23 lines
521 B
HTML
23 lines
521 B
HTML
<!DOCTYPE html>
|
|
<html lang="de">
|
|
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>Paw Patrol - Helfer auf vier Pfoten</title>
|
|
</head>
|
|
|
|
<body>
|
|
<h1>Lieblings-Fellfreund</h1>
|
|
<form id="pawFormular">
|
|
<label for="name">Gib hier den Namen ein: </label>
|
|
<input type="text" id="name" name="fellfreund">
|
|
<button type="submit">Spruch ausgeben</button>
|
|
</form>
|
|
<p id="meldung"></p>
|
|
<h2 id="spruch"></h2>
|
|
|
|
<script src="uebung06.js"></script>
|
|
</body>
|
|
|
|
</html> |