CSS
Cascading Style Sheet
The property sets the font size of text. Options include exact sizes (point, pixel or other values), absolute sizes, relative sizes, and percentage.
Example
<html>
<head>
<title>Skillpundit</title>
<style type="text/css"> .text1
{
font-size: 12px;
}
.text2
{
font-size: small;
}
.text3
{
font-size: large;
}
</style> </head>
<body>
<span class="text1">www.skillpundit.com</span>
</br> <span class="text2">www.skillpundit.com</span>
</br> <span class="text3">www.skillpundit.com</span>
</br> </body> </html>
<head>
<title>Skillpundit</title>
<style type="text/css"> .text1
{
font-size: 12px;
}
.text2
{
font-size: small;
}
.text3
{
font-size: large;
}
</style> </head>
<body>
<span class="text1">www.skillpundit.com</span>
</br> <span class="text2">www.skillpundit.com</span>
</br> <span class="text3">www.skillpundit.com</span>
</br> </body> </html>
Output