Untitled

 avatar
unknown
plain_text
2 years ago
312 B
4
Indexable
Example:
<!DOCTYPE html>
<html>
<head>
<style>
p{
 text-align: center;
 color: blue;
}
</style>
</head>
<body>
<p>This style will be applied on every paragraph.</p>
<p id="para1">Me too!</p>
<p>And me!</p>
</body>
</html>
Output:
This style will be applied on every paragraph.
Me too!
And me!
Editor is loading...
Leave a Comment