index.html
					<!doctype html>
<html>
	<head>
		<title>Inheritance</title>
		<link href="style.css" rel="stylesheet">
	</head>
	<body>
		<h1>This is a heading</h1>
		<p>This is a paragraph.</p>
		<p>This is another paragraph.</p>
		<p>This is <span>third</span> paragraph.</p>
	</body>
</html>

		
	
style.css
					body {
	color: gray; /* Everything within `body` will be gray… */
	font-family: sans-serif;
}

span {
	color: blue; /* Until you say otherwise! */
	font-style: italic;
	font-weight: bold;
}