<input type="button" name="MyButton" value="Submit">
and the OUTPUT looks like this:
as you can see, i dont have a class on this button, of course the easiest way to do that is to add a class, but thats not what this example is about, its about showing you how you can add style without using a class attribute
so lets say we want to make all of our input buttons color yellow, this is how we can use the style syntax:
<style type="text/css">
<!--
input[type="button"] {
background-color: #FC0;
}
-->
</style>
<!--
input[type="button"] {
background-color: #FC0;
}
-->
</style>
simple. hope that helps
