按钮类
普通按钮:<input type="button" value="普通"/>
提交按钮:<input type="submit"/>
重置按钮:<input type="reset"/>
需要<form></form>
<html>
<body align="center">
<form>
<input type="text"/>
<input type="reset"/>
</form>
</body>
</html>
按下重置键,在文字区输入的文字会被重置
图片按钮:<input type="image" src="路径/文件" width="300px" height="200px"/>
显示文件夹中的图片
图片的路径分为绝对路径与相对路径
绝对路径:不同文件中的路径位置,从当前的文件夹出发,写出图片路径
相对路径:完整的路径,从文件的根目录开始写起,写出文件路径
其他按钮:<buton type="submit|reset|button">按钮<button>