Araştırarak daha rahat öğreneceğini düşündüğüm için hazır kod vermek istemedim
Aşağıdaki kodlar işini görecektir
<style>
::-webkit-input-placeholder {
color: red;
}
:-ms-input-placeholder {
color: red;
}
::-moz-placeholder {
color: red;
opacity: 1;
}
:-moz-placeholder {
color: red;
opacity: 1;
}
</style>
<script>
function checkSubmit(e) {
if(e && e.keyCode == 13) {
document.forms[0].submit();
}
}
</script>
<form method="get" action="http://www.google.com/search"> <input size="45" length="200" name="q" placeholder="Aradığınız Ders Notunu Buraya Yazınız!!!" type="text" /><input type="submit" value="ara" /><input type="radio" checked="checked" name="sitesearch" value="aofplatformu.com" /><input type="hidden" name="forid" value="1" /> <input type="hidden" name="ie" value="UTF-8" /> <input type="hidden" name="oe" value="UTF-8" /> <input type="hidden" name="cof" /> <input type="hidden" name="hl" value="tr" /> </form>