In addition, this plugin, which I likewise think is great, raises another error using the W3C validator. Simple Basic Contact Form places a style element within the body element of the webpage. Style elements are valid only in the head element of a webpage; in the body, all style declarations are to be specified in the optional style attribute of a valid body element.
For example, the following, which Simple Basic Contact Form does, is invalid–
<div id="simple-contact-form>
(the form fieldsets, labels and inputs)
</div>
<style>
#simple-contact-form fieldset {
width: 100%; overflow: hidden;
}
</style>
The style declarations should instead be specified in the “style” attribute of a particular HTML element, like this–
<div id="simple-contact-form>
(...)
<fieldset style="width: 100%; overflow: hidden;"> (...) </fieldset>
(...)
</div>