Run

Tutorial With Example

Run your live code

 
21
 
1
<!DOCTYPE html>
2
<html>
3
<head>
4
           <title>CSS Text</title>
5
<style>
6
h1 {
7
    text-align: center;
8
}
9
p {
10
    text-align: justify;
11
}
12
  </style>
13
</head>
14
<body>
15
           <div>
16
             <h1>Welcome to CSS Tutorial</h1>
17
             <p>I am a CSS Developer!</p>
18
          </div>
19
           
20
</body>
21
</html>