Programming Code Center(PCC)
[CSS]

(PCC)::[how-to-use-universal-selector-tag-in-html-using-css]::[css]

File Name : index.html

<!DOCTYPE html>
<html>
<head>
<style>
* {
  text-align: center;
  color: blue;
}
</style>
</head>
<body>

<h1>Hello world!</h1>

<p>Every element on the page will be affected by the style.</p>
<p id="para1">Me too!</p>
<p>And me!</p>

</body>
</html>

Output :

Hello world!

Every element on the page will be affected by the style.

Me too!

And me!