Run

Tutorial With Example

Run your live code

 
​x
 
1
<!DOCTYPE html>
2
<html>
3
<head>
4
<style>
5
* {
6
    color: red;
7
    text-align: center;
8
}
9
</style>
10
</head>
11
<body>
12
​
13
<p>Hello Developers!</p>
14
<p>These paragraphs are styled with CSS.</p>
15
​
16
</body>
17
</html>