Ed Interlock
posted 2005-10-26
Ed Interlock is an OpenType font with some cool ligatures. Here's a screenshot with a sample phrase:

Here's the same text with the ligatures disabled:

In case you have the font installed, here's the markup I used to generate the screenshots:
<StackPanel xmlns="http://schemas.microsoft.com/winfx/avalon/2005" xmlns:x="http://schemas.microsoft.com/winfx/xaml/2005"> <TextFlow FontFamily="Ed Interlock" TextAlignment="Center" Margin="10" FontSize="40"> <!-- Ligatures default to true, but set property here for completeness --> <Paragraph Typography.StandardLigatures="True">DO YOU HAVE A FONT FETISH?</Paragraph> </TextFlow> <TextFlow FontFamily="Ed Interlock" TextAlignment="Center" Margin="10" FontSize="40"> <Paragraph Typography.StandardLigatures="False">DO YOU HAVE A FONT FETISH?</Paragraph> </TextFlow> </StackPanel>