I see a page with a contact form, and I just successfully sent you something.
By the way, the email entry is not being formatted like the rest of your page, if you go to your main CSS for the page/site (here, for reference), around line 1073 you'll find:
.post-content input[type="text"],
.post-content input[type="tel"],
.post-content input[type="url"],
.post-content input[type="password"],
.post-content textarea {
width: 100%;
padding: 14px 16px;
font-size: 0.9em;
border: none;
color: #333;
background: #f2f2f2;
border-radius: 3px;
-webkit-appearance: none;
}
but what you want is (to include the "email" too):
.post-content input[type="text"],
.post-content input[type="email"],
.post-content input[type="tel"],
.post-content input[type="url"],
.post-content input[type="password"],
.post-content textarea {
width: 100%;
padding: 14px 16px;
font-size: 0.9em;
border: none;
color: #333;
background: #f2f2f2;
border-radius: 3px;
-webkit-appearance: none;
}
If you still can't see the site/page, have you tried clearing your browser cache?
Kylee