Unterrichtsmaterialien für den Informatikunterricht

Vorlagen: HTML-Gerüste

Diese Gerüste werden per Copy/Paste als Vorlage verwendet

1. Einfaches HTML-Gerüst

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"  	
	"http://www.w3.org/TR/html4/loose.dtd">

<html>
<head>
  <title>TITEL</title>
  <meta http-equiv="content-type" content="text/html; charset=iso-8859-1">
</head>

<body>
<h1>Ueberschrift</h1>

<?php
phpinfo();
?>

</body>
</html>

2. Einfaches HTML-Gerüst mit Formular

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"  	
	"http://www.w3.org/TR/html4/loose.dtd">

<html>
<head>
  <title>TITEL</title>
  <meta http-equiv="content-type" content="text/html; charset=iso-8859-1">
</head>

<body>
<h1>Ueberschrift</h1>

<form action = "ergebnis.php" method = "post">
<label for="texteingabefeld">Text:</label>
<input type = "text" name = "texteingabefeld" id="eingabe" >
<input type = "submit" value="absenden">

</form>

</body>
</html>