成都创新互联网站制作重庆分公司

总结HTML相关知识-创新互联

这篇文章主要介绍“总结HTML相关知识”,在日常操作中,相信很多人在总结HTML相关知识问题上存在疑惑,小编查阅了各式资料,整理出简单好用的操作方法,希望对大家解答”总结HTML相关知识”的疑惑有所帮助!接下来,请跟着小编一起来学习吧!

在江宁等地区,都构建了全面的区域性战略布局,加强发展的系统性、市场前瞻性、产品创新能力,以专注、极致的服务理念,为客户提供成都网站制作、成都网站建设 网站设计制作按需网站设计,公司网站建设,企业网站建设,品牌网站建设,成都全网营销推广,外贸网站制作,江宁网站建设费用合理。

1.什么是HTML?

  • HTML 是用来描述网页的一种语言,指的是超文本标记语言: HyperText Markup Language;

  • HTML 不是一种编程语言,而是一种标记语言;

  • HTML文档也叫做 web 页面;

2.HTML基本结构

  • :文档声明;

  • :HTML 页面的根元素;

  • :用于定义文档的头部,是所有头部元素的容器;

  • :提供有关页面的元信息,位于文档的头部,不包含任何内容;

  • </code>:文档的标题;</p></li><li><p><code><body></code>:定义文档的主体,包含文档的所有内容;</p></li></ul><h4 id="h4-3-html-">3.HTML标签使用?</h4><ul><li><p>HTML 标签是由尖括号包围的关键词,且通常是成对出现的如<code><a></a></code>,当然也有单个的,只不过比较少如<code><hr></code>;</p></li><li><p>标签对中的第一个标签表示开始标签,第二个标签表示结束标签;</p></li></ul><h4 id="h4-4-html-">4.HTML常用标签介绍</h4><p>除了HTML基本结构的几个标签以外,HTML还有一些比较常用的基本标签;</p><p><strong>(1)文本标签:</strong></p><ul><li><p><code>h2-h7</code>:用于定义标题,h2为大标题,h7为最小标题;</p></li><li><p><code>p</code>:定义段落;</p></li><li><p><code>span</code>:组合文档中的行内元素;</p></li><li><p><code>br</code>:换行;</p></li><li><p><code>hr</code>:水平线;</p></li><li><p><code>strong/b</code>:加粗文字;</p></li><li><p><code>em/i</code>:斜体;</p></li><li><p><code>u</code>:下划线;</p></li><li><p>`s:删除线;</p></li><li><p><code>pre</code>:定义预格式化的文本,保持原有格式;</p></li><li><p><code>sub</code>:下标;</p></li><li><p><code>sup</code>:上标;</p></li><li><p><code>blockquote</code>:块引用;</p></li></ul><p><strong>(2)布局标签:</strong></p><ul><li><p><code>div</code>:定义文档中的分区或节,把文档分割为独立的、不同的部分;</p></li><li><p><code>header</code>:定义页面的头部;</p></li><li><p><code>aside</code>:用作文章的侧栏;</p></li><li><p><code>section</code>:定义文档中的节;</p></li><li><p><code>footer</code> :定义文档或节的页脚,通常包含文档的作者、版权信息、使用条款链接、联系信息等;</p></li><li><p><code>article</code>:规定文章独立的其他内容,如标题、内容、评论;</p></li></ul><p><strong>(3)多媒体标签:</strong></p><ul><li><p><code>img</code>:用于在网页中插入图像;</p></li><li><p><code>audio</code>:定义声音,比如音乐或其他音频流;</p></li><li><p><code>video</code>:定义视频,比如电影片段或其他视频流;</p></li></ul><p><strong>(4)超链接标签:</strong></p><ul><li><p><code>a</code>:定义超链接,指定页面间的跳转;</p></li></ul><p><strong>(5)序列化标签:</strong></p><ul><li><p><code>ul</code>:定义无序列表;</p></li><li><p><code>ol</code>:定义有序列表;</p></li><li><p><code>li</code>:定义列表项目,可用在无序列表ul和有序列表ol中;</p></li><li><p><code>dl</code>:定义了定义列表;</p></li><li><p><code>dt</code>:定义了定义列表中的项目(即术语部分);</p></li><li><p><code>dd</code>:在定义列表中定义条目的定义部分;</p></li></ul><p><strong>(6)表格标签:</strong></p><ul><li><p><code>table</code>:定义 HTML 表格;</p></li><li><p><code>tr</code>:定义表格的行;</p></li><li><p><code>td</code>:定义表格的单元;</p></li><li><p><code>th</code>:定义表头;</p></li><li><p><code>caption</code>:定义表格标题;</p></li><li><p><code>col</code>:为表格中一个或多个列定义属性值;</p></li><li><p><code>colgroup</code>:用于对表格中的列进行组合,以便对其进行格式化;</p></li><li><p><code>thead</code>:定义表格的表头;</p></li><li><p><code>tbody</code>:表格主体,也就是正文部分;</p></li><li><p><code>tfoot</code>:定义表格的页脚(脚注或表注);</p></li></ul><p><strong>(7)表单标签:</strong></p><ul><li><p><code>form</code>:用于为用户输入创建 HTML 表单;</p></li><li><p><code>input</code>:用于搜集用户信息;</p></li><li><p><code>button</code>:定义一个按钮;</p></li><li><p><code>select</code>:创建单选或多选菜单;</p></li><li><p><code>option</code>:定义下拉列表中的一个选项;</p></li><li><p><code>textarea</code>:定义多行的文本输入控件;</p></li><li><p><code>label</code>:为 input 元素定义标注(标记);</p></li><li><p><code>fieldset</code>:用于将表单内的相关元素分组;</p></li><li><p><code>legend</code>:为 fieldset 元素定义标题;</p></li></ul><h4 id="h4-5-html-">5.HTML注意事项</h4><ul><li><p>HTML文件当以后缀名为 .html 或 .htm 来命名;</p></li><li><p>HTML标签和属性是不区分大小写的,建议HTML标签和属性都小写,属性值必须用双引号包围;</p></li><li><p>HTML标签都是以开始标签起始,以结束标签终止;</p></li><li><p>HTML标签之间尽量缩进与换行,每行代码不要过长,方便阅读和维护;</p></li><li><p>HTML标签使用必须符合标签嵌套规则,如禁止a标签嵌套a标签,p标签嵌套div标签等;</p></li><li><p>建议不使用HTML已经废弃的或者不赞成使用的标签,少使用table布局、iframe框架嵌套以及flash播放器;</p></li></ul><p>到此,关于“总结HTML相关知识”的学习就结束了,希望能够解决大家的疑惑。理论与实践的搭配能更好的帮助大家学习,快去试试吧!若想继续学习更多相关知识,请继续关注创新互联-成都网站建设公司网站,小编会继续努力为大家带来更多实用的文章!</p> <br> 当前文章:总结HTML相关知识-创新互联 <br> 转载源于:<a href="http://cxhlcq.com/article/dhdiho.html">http://cxhlcq.com/article/dhdiho.html</a> </div> </div> </div> <div class="other container"> <h3>其他资讯</h3> <ul> <li> <a href="/article/icpidd.html">app怎么制作流程图,APP登录流程图</a> </li><li> <a href="/article/icpidc.html">服务vps是什么?vps有什么优缺点呢?</a> </li><li> <a href="/article/icpidp.html">PC流量越来越低怎么办?隐藏在背后的一些真相和转型</a> </li><li> <a href="/article/icpidg.html">杀手4设置,杀手4的全攻略</a> </li><li> <a href="/article/icpidj.html">网站建设需要哪些素材,自己建网站都需要准备哪些素材</a> </li> </ul> </div> <div class="footer"> <div class="foota container"> <div class="foot_nav fl col-lg-8 col-md-8 col-sm-12 col-xs-12"> <ul> <li class="col-lg-3 col-md-3 col-sm-3 col-xs-6"> <h3>网站制作</h3> <a href="http://www.cxjianzhan.com/mobile/" target="_blank">wap网站制作</a><a href="http://www.cdxwcx.cn/bj/" target="_blank">网站制作报价</a><a href="http://www.36103.cn/" target="_blank">成都网站制作</a><a href="https://www.cdcxhl.com/mobile.html" target="_blank">手机网站制作</a><a href="http://www.myzwz.com/" target="_blank">绵阳网站制作</a><a href="http://m.cdcxhl.cn/mobile/" target="_blank">手机网站制作</a> </li> <li class="col-lg-3 col-md-3 col-sm-3 col-xs-6"> <h3>企业服务</h3> <a href="https://www.cdcxhl.com/ruanwen/yingxiao/" target="_blank">软文发布平台</a><a href="https://www.cdcxhl.com/service/beian.html" target="_blank">网站备案</a><a href="https://www.cdcxhl.com/ruanwen/" target="_blank">软文营销</a><a href="https://www.cdcxhl.com/mianfei/zuo/chengdu.html" target="_blank">免费做网站</a><a href="https://www.cdcxhl.com/service/wenwangwen.html" target="_blank">网络文化经营许可证</a><a href="https://www.cdcxhl.com/ruanwen/yingxiao/" target="_blank">软文发稿</a> </li> <li class="col-lg-3 col-md-3 col-sm-3 col-xs-6"> <h3>网站建设</h3> <a href="http://www.cdkjz.cn/fangan/door/" target="_blank">门户网站建设方案</a><a href="https://www.cdxwcx.com/city/jiangyou/" target="_blank">江油网站建设</a><a href="http://m.cdcxhl.cn/shop/" target="_blank">商城网站建设公司</a><a href="http://www.dzwzjz.com/" target="_blank">达州网站建设</a><a href="https://www.cdcxhl.com/h5.html" target="_blank">成都h5网站建设</a><a href="http://www.cdkjz.cn/fangan/education/" target="_blank">教育培训网站建设方案</a> </li> <li class="col-lg-3 col-md-3 col-sm-3 col-xs-6"> <h3>服务器托管</h3> <a href="https://www.cdcxhl.com/idc/zongshu.html" target="_blank">棕树服务器托管</a><a href="http://www.cqfuwuqi.com/" target="_blank">重庆服务器托管</a><a href="https://www.cdcxhl.com/tuoguan/zongshu/" target="_blank">成都棕树机房</a><a href="https://www.cdcxhl.com/idc/yaan.html" target="_blank">雅安服务器托管</a><a href="https://www.cdcxhl.com/idc/cqyd.html" target="_blank">重庆移动机房托管</a><a href="http://www.cdxwcx.cn/tuoguan/mianyang.html" target="_blank">绵阳托管服务器</a> </li> </ul> </div> <div class="footar fl col-lg-4 col-md-4 col-sm-12 col-xs-12"> <p>全国免费咨询:</p> <b>400-028-6601</b> <p>业务咨询:028-86922220 / 13518219792</p> <p>节假值班:18980820575 / 13518219792</p> <p>联系地址:成都市太升南路288号锦天国际A幢1002号</p> </div> </div> <div class="footb"> <div class="copy container"> <div class="fl">Copyright © 成都创新互联科技有限公司重庆分公司 <a href="https://beian.miit.gov.cn/" target="_blank">渝ICP备2021005571号</a></div> <!--<div class="fr"><a href="https://www.cdxwcx.com/" target="_blank">成都网站建设</a>:<a href="https://www.cdcxhl.com/" target="_blank">创新互联</a></div>--> </div> </div> <div class="link"> <div class="container"> 友情链接:: <a href="https://www.cdcxhl.com/" target="_blank">成都网站建设</a> <a href="https://www.cdcxhl.com/city/chongqing.html" target="_blank">重庆网站建设</a> <a href="">四川网站建设</a> <a href="">重庆建设网站</a> <a href="https://www.cdxwcx.com/jifang/xiyun.html" target="_blank">移动服务器托管</a> <a href="http://www.cdfuwuqi.com/" target="_blank">成都服务器托管</a> <a href="https://www.cdcxhl.cn/" target="_blank">云服务器</a> <a href="http://www.cdhuace.com/" target="_blank">广告设计制作</a> <a href="https://www.cdcxhl.com/sheji/chongqing.html" target="_blank">重庆网页设计</a> <a href="https://www.cdcxhl.com/zuo/chongqing.html" target="_blank">重庆做网站</a> <a href="https://www.cdcxhl.com/zhizuo/chongqing.html" target="_blank">重庆网站制作</a> <a href="">重庆网站建设</a> <a href="">重庆网站公司</a> <a href="">渝中网站制作</a> <a href="">重庆网站设计</a> </div> </div> </div> <div class="foot"> <ul class="public-celan"> <li> <a href="https://p.qiao.baidu.com/cps3/chatIndex?siteToken=6ce441ff9e2d6bedbdfc2a4138de449e&speedLogId=162260383240185e3_1622603832401_02407&eid=6256368&reqParam=%7B%22from%22%3A1%2C%22sessionid%22%3A%22-100%22%2C%22siteId%22%3A%2211284691%22%2C%22tid%22%3A%22-1%22%2C%22userId%22%3A%226256368%22%2C%22ttype%22%3A1%2C%22pageId%22%3A0%7D" target="_blank" class="a1 db tc"> <img src="/Public/Home/img/icon-23.png" alt="" class="db auto"> <span class="span-txt">在线咨询</span> </a> </li> <li> <a href="tel:18980820575" class="a1 db tc"> <img src="/Public/Home/img/icon-24.png" alt="" class="db auto"> <span class="span-txt">电话咨询</span> </a> </li> <li> <a target="_blank" href="tencent://message/?uin=1683211881&Site=&Menu=yes" class="a1 db tc"> <img src="/Public/Home/img/icon-25.png" alt="" class="db auto"> <span class="span-txt">QQ咨询</span> </a> </li> <li> <a target="_blank" href="tencent://message/?uin=532337155&Site=&Menu=yes" class="a1 db tc public-yuyue-up"> <img src="/Public/Home/img/icon-26.png" alt="" class="db auto"> <span class="span-txt">预约顾问</span> </a> </li> </ul> </div> <div class="customer"> <dl class="icon1"> <dt> <a href="tencent://message/?uin=1683211881&Site=&Menu=yes"> <i class="iconT"><img src="/Public/Home/img/QQ.png" alt=""></i> <p>在线咨询</p> </a> </dt> </dl> <dl class="icon2"> <dt><i><img src="/Public/Home/img/weixin.png" alt=""></i><p>微信咨询</p></dt> <dd><img src="/Public/Home/img/ewm.png"></dd> </dl> <dl class="icon3"> <dt><i><img src="/Public/Home/img/dianhua.png" alt=""></i><p>电话咨询</p></dt> <dd> <p>028-86922220(工作日)</p> <p>18980820575(7×24)</p> </dd> </dl> <dl class="icon4"> <dt class="sShow"> <a href="tencent://message/?uin=244261566&Site=&Menu=yes"> <i><img src="/Public/Home/img/dengji.png" alt=""></i><p>提交需求</p> </a> </dt> </dl> <dl class="icon5"> <dt class="gotop"> <a href="#top"> <i><img src="/Public/Home/img/top.png" alt=""></i><p>返回顶部</p> </a> </dt> </dl> </div> </body> </html> <script> $(".con img").each(function(){ var src = $(this).attr("src"); //获取图片地址 var str=new RegExp("http"); var result=str.test(src); if(result==false){ var url = "https://www.cdcxhl.com"+src; //绝对路径 $(this).attr("src",url); } }); window.onload=function(){ document.oncontextmenu=function(){ return false; } } </script>