Featured Work

Hello, My name is Jennifer Perrin.
I specialize in the fields of corporate identity (logo) design,
print design, and web site design and development. I spend a majority of my time designing small business web sites, personal blogs,
logos, brochures, letterhead, business cards and more.
» Looking for my Resumé?
June 22nd, 2010
I came across this post over on NetTuts+. Great article that explains 10 of the least used HTML tags. I know there are a few there I have not used enough in the past.
Source: http://net.tutsplus.com
April 2nd, 2010
I came across this nice little tool to check out how a site is seen at different screen resolutions. Great for developers.
Source: www.whereisthefold.com
March 19th, 2010

Designing an HTML email that renders consistently across the major email clients can be very time consuming. Support for even simple CSS varies considerably between clients, and even different versions of the same client.
Great resource to have bookmarked. I know this has been an issue for my email template designs in the past.
Source: www.campaignmonitor.com
March 10th, 2010
Today while developing a CMS for a freelance project I encountered an issue which works fine in Firefox but gives an error in Internet Explorer. In IE, the error I encountered is“Error: Invalid source HTML for this operation“. When I open the same CMS in Firefox, it renders properly without any warnings or errors in the JavaScript console.
After searching Google I found some answers in various technical forums. This error is caused by “Inserting a block element inside a non-block element” example: document.getElementById(‘inserting’).innerHTML=”<span><div>Inserting a block element inside a non-block element</div></span>”
Basically in IE you can’t insert a block element into a non-block element using innerHTML. But it’s not as consistent as that. Inside a form it get’s hazy. You can insert a div for the error but you can’t insert a div inside a p tag inside a form element, or it will throw that error.
March 5th, 2010
I came across this nice little tool for setting border radius in CSS. Had to share!