Font Style with letter-spacing and word-spacing

Font Style with letter-spacing and word-spacing.
for change's we can increase or decrease letter-spacing and word-spacing values

<html>
<head>
<title>Table Designs </title>

<style>
#df {
font-family: Georgia, serif;
font-size: 25px;
letter-spacing: 2px;
word-spacing: 2px;
color: #000000;
font-weight: normal;
text-decoration: none;
font-style: normal;
font-variant: normal;
text-transform: none;
}
</style>
</head>
<body>
<div id="df">Edit this text</div>
</body>
</html>


Comments

Popular Posts