is_page conditional question

If the page slug is ‘contact’ then is_page(‘contact’) should work. You can check out the optional parameters for page in the codex here . Using post ID, e.g. 94 in your example will work regardless of permalink settings.

If you want it to display for a specific template you can use is_page_template(‘contact.php’).