﻿<!DOCTYPE html>
<html lang="de">
   <head>
	<meta charset="utf-8">  
	<title> Ausgabe mit document.write( ) </title>
		
	<script> 
		document.write("<h3>Meine Daten:</h3>");
		document.write("<br>"+"Vorname: Max"+"<br>");
		document.write("<br>"+"Nachname: Mustermann"+"<br>");
		document.write("<br>"+"Straße: Musterstraße"+"<br>");
		document.write("<br>"+"Stadt: Musterstadt"+"<br>");
	</script>
   </head>
	
   <body>
   </body>
</html>




