html로 버튼만들기

2015. 11. 8. 00:50IT_잡다/html

html을 이용한 간단하면서도 보기 좋은 버튼을 만드는 소스입니다.


[결과물]


[source]

<!-- button Start-->
      <table cellspacing="0" cellpadding="0">
        <tr>
          <td>
            <input name="submit2" style="width:100px" type="button" class="button_nav" value="Mail 인증받기" onMouseOver="this.style.color='#650000'" onMouseOut="this.style.color='#202020'" >
          </td>
          <td width="4"></td>
          <td>
            <input name="submit2" style="width:100px" type="button" class="button_nav" value="SMS 인증받기"  onMouseOver="this.style.color='#650000'" onMouseOut="this.style.color='#202020'">
          </td>
          <td width="4"></td>
          <td>
            <input name="reset4" type="button" class="button_default" value="Cancel"  onMouseOver="this.style.color='#650000'" onMouseOut="this.style.color='#202020'"></td>
        </tr>
      </table>
<!-- button End-->