JSFiddle - React, Tailwind, and code Playground

HTML

<form>
    <table>
        <tr>
            <td valign="top">
    <input id="subscribe" type="text" size="40" maxlength="100" value="enter your correct email address here" onFocus="if(this.value=='enter your correct email address here')this.value='';"/>
            </td>
            <td valign="top">
    <input id="submit" type="submit" class="plus" id="plus" value="" >
            </td>
        </tr>
    </table>
</form>

CSS

#subscribe{
    height:31px;
    border-style:none;
    padding-left:13px;
    background-color:#ef5a28;
    border:solid 1px #ef5a28;
    margin:2px 0 0 0;
    font-family: Verdana, "Geneva", sans-serif;
    font-weight:bold;color:#FFF;font-size:13px;
    letter-spacing:-1px;}

#submit{
    background-color:#000;
    width:36px;height:33px; 
    border: 1px solid #900;
    margin:0 0 0 0;
    background-image:url(images/plus.png);
}

#submit:hover{background-color:#ef5a28;}