GIS-2020-SoSe/Aufgaben/Aufgabe_08_2020-06-17/tutorial.html

49 lines
1.4 KiB
HTML

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<script src="tutorial.js" defer></script>
<title>Tutorial Kapitel 08</title>
</head>
<body>
<form method="" action="https://theoneandgis.herokuapp.com/">
<label for="vorname">Vorname:</label> <br>
<input type="text" id="vorname" name="vorname" value="Ben"> <br>
<label for="nachname">Nachname:</label> <br>
<input type="text" id="nachname" name="nachname" value="Uchiha"> <br>
<input type="submit" value="Submit Input">
<button type="submit">Submit Button</button>
<button type="button" id="theButton">Button Button</button>
</form>
<hr>
<!-- <form method="get" action="">
<button type="submit">Get</button>
</form>
<form method="get" action="https://gis-example.herokuapp.com/">
<button type="submit">Get mit URL in Action</button>
</form>
<hr>
<form method="post" action="">
<button type="submit">Post</button>
</form>
<form method="post" action="https://gis-example.herokuapp.com/">
<button type="submit">Post mit URL in Action</button>
</form> -->
</body>
</html>
<style>
button,label,input {
margin: 10px;
}
</style>