HTML

HTML

      
Body:网页主体
        Title:网页标题
        Head:网页头部信息
        Navigation:导航
        Footer:底部
        H4:标题4
        H2:标题2
        P:段落
        HR:水平线
        Br:换行符
        &nbsp:空格
        del:中划线
        无序列表:
        <ul>
            <li>文字</li>
        </ul>
        有序列表:
        <ol>
            <li>文字</li>
        </ol>
        定义列表:
        <dl>
            <dt></dt>
            <dd></dd>
        </dl>
        图片:<img src="logo.jpg">
        视频:<video src="green.mp4"></video>
        音频:<audio src="bg.mp3"></audio>
        表格:
        <table>
            <tr>
                <td></td>
                <td></td>
            </tr>
        </table>
      
        表单:
        <input type="表单的处理程序"  value="传送方式(get/post)">
            表单元素
</form>
        表单元素
        文本框:<input type="text"/>
        密码:<input type="password"/>
        单选按钮:<input type="radio"/>
        复选框:<input type="checkbox"/>
        普通按钮:<input type="button"/>
        提交按钮:<input type="submit"/>
        重置按钮:<input type="reset"/>
        文件域:<input type="file"/>
        邮件域:<input type="email"/>
        颜色域:<input type="color"/>
        搜索框:<input type="search"/>
        文本框:
        <textarea rows="5" cols="10">文字</textarea>
        下拉列表:
        <select>
            <option value="湖南">湖南</option>
            <option value="广东">广东</option>
        </select>
      
    </body>
</html>

  ‍

© 版权声明
THE END
喜欢就支持一下吧
点赞0 分享
评论 抢沙发
头像
欢迎您留下宝贵的见解!
提交
头像

昵称

取消
昵称表情代码图片

    暂无评论内容