Style text in <h1> to uppercase letters, and text in <p> to capitalized letters. - HTML CSS CSS

HTML CSS examples for CSS:Quiz

Description

Style text in <h1> to uppercase letters, and text in <p> to capitalized letters.

Demo Code

ResultView the demo in separate window

<!DOCTYPE html>
<html>
<head>
<style>
h1 {<!-- w  ww .  j  a v a 2 s  . c o  m-->
    text-transform: uppercase;
}
p {
    text-transform: capitalize;
}
</style>
</head>
<body>

<h1>This is a Heading</h1>
<p>This is a paragraph.</p>
<p>This is another paragraph.</p>

</body>
</html>

Related Tutorials