Programming Code Center(PCC)
[CSS]

(PCC)::[how-to-color-all-data-using-use-element-selector-in-css]::[css]

File Name : index.html

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

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

</body>
</html>

Output :

Every paragraph will be affected by the style.

Me too!

And me!