Using font property: Set the <p> to "italic", "20px" and "Verdana". - HTML CSS CSS

HTML CSS examples for CSS:Quiz

Description

Using font property: Set the <p> to "italic", "20px" and "Verdana".

Demo Code

ResultView the demo in separate window

<!DOCTYPE html>
<html>
<head>
<style>
p {<!--  ww  w . jav a 2  s .co m-->
    font: italic 20px Verdana;
}

</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