mirror of
				https://git.schule.click/GymSedan/ifg-html-vorlage.git
				synced 2025-11-04 10:09:21 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			30 lines
		
	
	
	
		
			486 B
		
	
	
	
		
			HTML
		
	
	
	
	
	
			
		
		
	
	
			30 lines
		
	
	
	
		
			486 B
		
	
	
	
		
			HTML
		
	
	
	
	
	
<!doctype html>
 | 
						|
<html lang="de">
 | 
						|
	<head>
 | 
						|
		<meta charset="utf-8" />
 | 
						|
		<title>Grundstruktur</title>
 | 
						|
		<style>
 | 
						|
			h1 {
 | 
						|
				color: magenta;
 | 
						|
				font-size: 100pt;
 | 
						|
			}
 | 
						|
 | 
						|
			h2.meineUeberschrift {
 | 
						|
				color: blue;
 | 
						|
				font-size: 50pt;
 | 
						|
			}
 | 
						|
		</style>
 | 
						|
	</head>
 | 
						|
	<body>
 | 
						|
		<h1>Apfelmus</h1>
 | 
						|
		
 | 
						|
		<img src="apfelmus.jpg">
 | 
						|
		
 | 
						|
		<h2 class="meineUeberschrift">Zutaten</h2>
 | 
						|
		<p>Ein Absatz...</p>
 | 
						|
		
 | 
						|
		<h2>Herstellung</h2>
 | 
						|
		<p>Ein weiterer Absatz</p>
 | 
						|
	</body>
 | 
						|
 | 
						|
</html>
 |