Set font size to 6em in HTML and CSS

Description

The following code shows how to set font size to 6em.

Example


<!--from  w w  w  .ja va2  s .  c o m-->
<html>
<head>
<title>Set text indent to 37%</title>
<style type="text/css">
p {
text-indent: 37%;
line-height: 1em;
}
p span.initcap {
font-size: 6em;
line-height: 0.6em;
font-weight: bold;
}
</style>
</head>

<body>
<p><span class="initcap">O</span>nline. This is test. This is test.
This is test. This is test. This is test. This is test. This is test.
This is test. This is test. This is test. This is test. This is test.
This is test. This is test. This is test. This is test. This is test.
</p>
</body>
</html>

Click to view the demo

The code above generates the following result.

Set font size to 6em in HTML and CSS