20 lines
788 B
HTML
20 lines
788 B
HTML
|
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
|
||
|
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
||
|
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="zh-CN">
|
||
|
<head>
|
||
|
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8"/>
|
||
|
<title>Button</title>
|
||
|
<link rel="stylesheet" href="../../builds/css/icon.min.css"/>
|
||
|
</head>
|
||
|
<body>
|
||
|
<p/>Style 1:
|
||
|
<a class="bsgrid_icon icon_view" onclick="alert('View!');">View</a>
|
||
|
 
|
||
|
<a class="bsgrid_icon icon_about" onclick="alert('Long icon!');">Long icon</a>
|
||
|
|
||
|
<p/>Style 2:
|
||
|
<button type="button" class="bsgrid_icon icon_view" onclick="alert('View!');">View</button>
|
||
|
 
|
||
|
<input class="bsgrid_icon icon_about" type="button" onclick="alert('Long icon!');" value="Long icon"/>
|
||
|
</body>
|
||
|
</html>
|