can any one give me html code for push button link..... i want push button to be black in color with white color words on it.... plz help.....
meaning? you need a submit button? check w3c in css, you'll declare: { background: #000; color: #fff } Good luck!
thnks for the responce frnds.......but i didnt get what i want.....i am just a beginner in html code i have a code here <input value="Home" onclick="window.location.href='http://forums.digitalpoint.com/showthread.php?t=1259478" type="BUTTON"/> it will give a white button with black letters on it i want black button with white letters can any one give codes plz
you can follow silverstripes and pintoria's idea... it will help you but if you like to study more about the input tag w3schools website
It's not even the best way to do this, but it will work <input value="Home" onclick="window.location.href='http://forums.digitalpoint.com/showthread.php?t=1259478" type="BUTTON" style="background-color: #000000; color: #FFFFFF;" /> Have used the same button code of yours, and just added a 'hard coded' style to it...