<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Example of CSS Universal Selector</title>
<style>
* {
color:#11a286;
font-size:18px;
}
</style>
</head>
<body>
<h1>This is a heading.</h1>
<p>This is a paragraph.</p>
<p>This is a another paragraph</p>
</body>
</html>