日本語
<!-- 完全な HTML 文件如下: --> <html><head> <style type="text/css"> <!-- .text { font-family: "Arial", "Helvetica", "sans -セリフ";フォントサイズ: 12pt; color: #ff0000 } a:hover { font-family: "Arial"、"Helvetica"、"sans-serif";フォントサイズ: 12pt;カラー: #000000 ;テキスト装飾: なし } .normal {背景色:#ccccc; .over {背景色:#cccccc;ボーダートップ: 1px #ffffff ソリッド;ボーダー左: 1px #ffffff ソリッド;ボーダー右: 1px #999999 ソリッド;ボーダーボトム: 1px #999999 ソリッド } .down {背景色:#cccccc;ボーダートップ: 1px #999999 ソリッド;ボーダー左: 1px #ffffff ソリッド;ボーダー右: 1px #ffffff ソリッド;ボーダーボトム: 1px #ffffff ソリッド } .link {テキスト装飾: なし;色:#000000; font-family: 宋体} --> </style> </head> <body bgcolor="#cccccc" text="#000000"> <table width="80" border="0" cellpadding="0" cellpacing ="0" height="30"> <tr> <td class=normal onmouseover='this.className="over"' onmousedown='this.className="down"' onmouseup='this.className="over" ' onmouseout='this.className="normal"' > <div align="center" > <a style="cursor:default" href="http://www.downcodes.com" target="_blank">测试按钮</a> </div> </td> </tr> </table> </body> </html>