《head first html/css》之html5部分走起

来源:互联网 发布:日照间距算法 编辑:程序博客网 时间:2024/05/16 08:22

这里写图片描述
1,2,3……..html5走起!!!滴滴,不是学生卡。滚下车!!!
html5中增加了很多新的元素,各个元素语义性很强,并且都是很时新的功能,很棒啊!
此书中部分,升级原来使用html4完成的爱青蔬官网首页,现在使用html5来实现,点击查看爱青蔬官网首页以及购物攻略

以下都是表单中新增常见的元素:

<label for="num">数字输入框:</label><input type="number" min="0" id="num"><br>范围输入:<input type="range" min="0" max="100" step="10"><br>颜色输入:<input type="color"><br>日期输入:<input type="date"><br>email输入:<input type="email" placeholder="email"><br>tel输入:<input type="tel" placeholder="手机号" required><br>url输入:<input type="url" placeholder="url"><br>分组:<fieldset>    <legend>复选框分组</legend>    <input type="checkbox" name="spice" value="salt" id="salt"><label for="salt">salt</label>    <input type="checkbox" name="spice" value="pepper" id="pepper"><label for="pepper">pepper</label>    <input type="checkbox" name="spice" value="garlic" id="garlic"><label for="garlic">garlic</label></fieldset>

html5中还增加了别的很多元素。

0 0
原创粉丝点击