Search This Blog

CSS Font Size Example

CSS Font Size Example :
<!DOCTYPE html>
<html>
<head>
<title> kod4u </title>
<style type="text/css">
h2 {
font-size: 30px;
}

p {
font-size: 1.5em;
}
</style>=
</head>
<body>
<h1> Font Size Example </h1>
<h2>This is heading 2</h2>
<p>This is a paragraph.</p>
</body>
</html>
OUTPUT
CSS Font Size Example

No comments:

Post a Comment