<html lang="en">
<head>
<title>CSS Universal Selector</title>
<style>
*{
font-size: 23px;
color: blue;
}
</style>
</head>
<body>
<h2>This is a heading</h2>
<p>This is a paragraph.</p>
<p>Another paragraph in this example.</p>
</body>
</html>