16 lines
		
	
	
		
			429 B
		
	
	
	
		
			HTML
		
	
	
	
	
	
			
		
		
	
	
			16 lines
		
	
	
		
			429 B
		
	
	
	
		
			HTML
		
	
	
	
	
	
<!DOCTYPE html>
 | 
						|
<html lang = "en"> <!-- attribute that the langage is english -->
 | 
						|
	<head>
 | 
						|
  		<meta charset="utf-8">
 | 
						|
		<title>Hello (Suessian) world!</title>
 | 
						|
	</head>
 | 
						|
	<body>
 | 
						|
	<strong>Hello!</strong>
 | 
						|
	<ol> <!-- what if these are <ol></ol> tags? -->
 | 
						|
		<li> fish </li>
 | 
						|
		<li> <blink>fish</blink> </li>
 | 
						|
	</ol>
 | 
						|
	<p style="color:red"> fish </p> <!-- specify colour -->
 | 
						|
	<p style="color:blue"> fish </p>
 | 
						|
	</body>
 | 
						|
</html> |