本文摘自PHP中文网,作者php中世界最好的语言,侵删。
这次给大家带来常用html元素结构有哪些,使用常用html元素结构的注意事项有哪些,下面就是实战案例,一起来看一下。基本结构:
1 2 3 4 5 6 7 8 9 | <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd" >
<html>
<head>
<meta http-equiv= "Content-Type" content= "text/html; charset=UTF-8" >
<title></title>
</head>
<body>
</body>
</html>
|
2.文档类型:
(1)HTML 4.01
1 | <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd" >
|
(2)HTML5
(3)XHTML 1.0
1 | <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd" >
|
3.头部:
(1)字符集
1 | <meta http-equiv= "Content-Type" content= "text/html; charset=UTF-8" >
|
(2)引入JS
1 2 3 4 | <script language= "javascript" ></script>
<script language= "javascript" src= "" ></script>
<script language= "javascript" > var u= "__URL__" ; var a= "__APP__" ;</script>
<script language= "javascript" src= "__PUBLIC__/js/jquery-1.8.1.min.js" ></script>
|
(3)引入CSS
复制代码
代码如下:
1 2 | <style type= "text/css" ></style>
<link rel= "stylesheet" href= "" type= "text/css" >
|
(4)设置默认跳转
1 2 | <base href= "" />
<base target= "_blank" />
|
(5)设置搜索引擎相关信息
1 2 | <meta name= "description" content= ",," />
<meta name= "keywords" content= ",," />
|
4.主体:
(1)基本内容
1 2 3 | <body onload= "" >
<div id= "" class = "" >
</div> <div style= "clear:both;" >
|
(2)表单
GET方式提交:
1 | <form id= "" action= "" method= "post" ></form>
|
POST方式提交:
1 | <form id= "" action= "" method= "get" ></form>
|
携带文件提交:
1 | <form id= "" action= "" method= "post" enctype= "multipart/form-data" ></form>
|
首页常用:
1 2 3 4 5 | 文本域:<input id= "" name= "" class = "" type= "text" ></input>
密码域:<input id= "" name= "" class = "" type= "password" ></input>
普通按钮:<input id= "" name= "" class = "" type= "button" ></input>
单选按钮:<input id= "" name= "" class = "" type= "radio" ></input>
多选按钮:<input id= "" name= "" class = "" type= "checkbox" ></input>
|
相信看了这些案例你已经掌握了方法,更多精彩请关注php中文网其它相关文章!
相关阅读:
怎样通过disabled和readonly将input设置为只读效果
meta的标签有哪些作用
HTML的头标签meta如何实现refresh重新定向
html的form内部标签应该如何使用
以上就是常用html元素结构有哪些的详细内容,更多文章请关注木庄网络博客!
相关阅读 >>
Html 基础
Html表格的标签是什么
angularjs是什么?为什么用angularjs?
Html文件里面怎么放入css
Html textarea是什么意思?如何获取textarea标签中的换行符和空格?
input文本框如何实现添加提示文字,填写内容时消失
Html ins标签常用的用法有哪些?Html ins常用属性的介绍
企业开发中使用h5有哪些注意事项
Html中button标签的用法
http和Html分别指什么
更多相关阅读请进入《Html》频道 >>
人民邮电出版社
本书对 Vue.js 3 技术细节的分析非常可靠,对于需要深入理解 Vue.js 3 的用户会有很大的帮助。——尤雨溪,Vue.js作者
转载请注明出处:木庄网络博客 » 常用html元素结构有哪些