STYLE
Run
<html>
	<head>
		<style>
h1 {color:Red;}
p {color:lightblue;}
</style>
	</head>
	<body>
		<h1>This is my first heading</h1>
		<p>This is my paragraph</p>
		<h2>This is another heading without any styling on it</h2>
	</body>
</html>