Edit in JSFiddle

<form>
    <input class="button" name="submit" type="submit" value="&raquo;" />
    <input type="text" value="Search" onfocus="if(this.value==this.defaultValue)this.value='';" onblur="if(this.value=='')this.value=this.defaultValue;" />
</form>
        
    
form {
	height: 30px;
	width: 220px;
}

input[type="text"] {
	background: #fff;
	border: 1px solid #ccc;
    border-left: none;
	color: #999;
	font-family: Arial, 'Helvetica Neue', Helvetica, sans-serif;
	font-size: 13px;
	height: 28px;
	margin: 0;
	padding: 0 10px;
    position: absolute;
    width: 188px;
}
input[type="text"]:focus {
	background: #fff;
}
input.button {
	background: #EB6F24;
    border: 0;
    color: #fff;
	height: 30px;
	margin: 0;
	padding: 0;
	width: 30px;
}