HTML中的input元素是允许用户输入数据的元素
input元素通常在form标签中使用,常被应用于搜索框,输入框等。
input元素可以通过type属性改变其类型(功能)。
我们一起来尝试使用一下input元素
用户名:<input type="text"/>
我们尝试改变一下input的功能,将input改变为按钮,(value)用于设置input的值
<input type="button" value="提交"/>
同时 input标签中可以放入图片
<input type="imge" src="https://www.dir321.com/d/file/p/2021/11-06/0255bdf20af9f26786c3dcced6df28d6.jpg">
但这样使用input标签 value就不会显示了。