Text Transformation by CSS

<html>
<head>
<style>
body{
background:lightblue;
}
h1{
text-transform:uppercase;
}
h2{
text-transform:lowercase;
}
h3{
text-transform:Capitalize;
}

</style>
</head>
<body>
<h1>This is uppercase paragraph</h1>
<h2>This is lowercase paragraph</h2>
<h3>This is capitalize paragraph</h3>

<body>
</html>
The output is given below:

0 comments:

Post a Comment