Klingon Font

Use a Custom font (In this case Klingon)

HTML

<p class="klingon">DaHjaj 'oH QaQ jaj Daq Hegh</p>

CSS

@font-face {
    font-family: klingon_font;
    src: url('http://static1.grsites.com/archive/fonts/k/KLINGON_.TTF');
}

p.klingon{
    font-family: arial
    ; /* no .ttf */
}