私は助けが必要なものにたどり着くために私のコードの束を切り取りました、私はそれにカーソルを合わせると画像を変える画像を持っています、しかし私がその画像をクリックするとそれをどのように追加するかmywebsite.comと言う?? http://pastebin.com/h83yi3e3
コード:
<html>
  <head>
    <style>
       #buttonOne {width:140px;height:60px;background-image:url(buttonOne.png);}
       #buttonOne:hover {width:140px;height:60px;background-image:url(buttonOneH.png);}
       #buttonTwo {width:140px;height:60px;background-image:url(buttonTwo.png);}
       #buttonTwo:hover {width:140px;height:60px;background-image:url(buttonTwoH.png);}
       #buttonThree {width:140px;height:60px;background-image:url(buttonThree.png);}
       #buttonThree:hover {width:140px;height:60px;background-image:url(buttonThreeH.png);}
    </style>
  </head>
  <body>    
      <div id="buttonOne">
      </div>
      <div id="buttonTwo">
      </div>
      <div id="buttonThree">
      </div>    
  </body>
</html>