HTML CSS examples for CSS:Font
Cursive Fonts
<table class="data"> <tbody><tr> <th>font-family</th> <th>Normal</th> <th>Bold</th> </tr> <tr> <td>"Comic Sans MS", cursive</td> <td><p style="font-family:'Comic Sans MS', cursive;">This is normal text.</p></td> <td><p style="font-family:'Comic Sans MS', cursive;"><strong>This is bold text.</strong></p></td> </tr> <tr> <td>"Courier New", Courier, monospace</td> <td><p style="font-family:'Courier New', Courier, monospace;">This is normal text.</p></td> <td><p style="font-family:'Courier New', Courier, monospace;"><strong>This is bold text.</strong></p></td> </tr> <tr> <td>"Lucida Console", Monaco, monospace</td> <td><p style="font-family:'Lucida Console', Monaco, monospace;">This is normal text.</p></td> <td><p style="font-family:'Lucida Console', Monaco, monospace;"><strong>This is bold text.</strong></p></td> </tr> </tbody></table>