总结HTML相关知识-成都创新互联网站建设

关于创新互联

多方位宣传企业产品与服务 突出企业形象

公司简介 公司的服务 荣誉资质 新闻动态 联系我们

总结HTML相关知识

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

成都创新互联公司专注为客户提供全方位的互联网综合服务,包含不限于网站设计、成都网站制作、海州网络推广、小程序开发、海州网络营销、海州企业策划、海州品牌公关、搜索引擎seo、人物专访、企业宣传片、企业代运营等,从售前售中售后,我们都将竭诚为您服务,您的肯定,是我们最大的嘉奖;成都创新互联公司为所有大学生创业者提供海州建站搭建服务,24小时服务热线:18982081108,官方网址:www.cdcxhl.com

1.什么是HTML?

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

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

  • HTML文档也叫做 web 页面;

2.HTML基本结构

  • :文档声明;

  • :HTML 页面的根元素;

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

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

  • </code>:文档的标题;</p></li><li><p><code><body></code>:定义文档的主体,包含文档的所有内容;</p></li></ul><h4>3.HTML标签使用?</h4><ul><li><p>HTML 标签是由尖括号包围的关键词,且通常是成对出现的如<code><a></a></code>,当然也有单个的,只不过比较少如<code><hr></code>;</p></li><li><p>标签对中的第一个标签表示开始标签,第二个标签表示结束标签;</p></li></ul><h4>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>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://kswsj.cn/article/jppsdo.html">http://kswsj.cn/article/jppsdo.html</a> </div> </div> <div class="other"> <h3>其他资讯</h3> <ul> <li> <a href="/article/dedhige.html">c语言调用curl库函数 c如何调用c++库函数</a> </li><li> <a href="/article/dedhips.html">linux实现命令行 linux执行命令行</a> </li><li> <a href="/article/dedhipc.html">阿里云轻云服务器是假的 阿里云轻型应用服务器</a> </li><li> <a href="/article/dedhiig.html">苏州阿里云服务器查询地址 阿里云苏州分公司</a> </li><li> <a href="/article/dedhidg.html">公司域名被注册了怎么办 公司域名被注册了怎么办理</a> </li> </ul> </div> </div> <div class="line"></div> <!--底部--> <footer id="5"> <div class="foot1 container"> <div class="list"> <div class="item"> <a href="javascript:;"> <span class="ico1"><i class="iconfont"></i><img src="/Public/Home/img/ewm.png" alt=""></span> <strong>关注我们</strong> </a> </div> <div class="item"> <a href="" target="_blank"> <span><i class="iconfont"></i></span> <strong>索要报价</strong> </a> </div> <div class="item"> <a href="" target="_blank"> <span><i class="iconfont"></i></span> <strong>我要咨询</strong> </a> </div> <div class="item"> <a href="" target="_blank"> <span><i class="iconfont"></i></span> <strong>找到我们</strong> </a> </div> <div class="item"> <a href="" target="_blank"> <span><i class="iconfont"></i></span> <strong>投诉建议</strong> </a> </div> </div> <div class="tel"> <dl> <tel><a href="tel:400-028-6601" target="_blank">400-028-6601</a></tel><br> <span>也许您需要专业的服务,欢迎来电咨询</span> </dl> <dl> <tel><a href="tel:18980820575" target="_blank">18980820575</a></tel><br> <span>您的需求,是我们前进的动力</span> </dl> </div> </div> <div class="friend"> <div class="container"> <span class="tit">友情链接:</span> <div class="inner"> <a href="https://www.cdcxhl.com/tuoguan/" target="_blank">IDC机房托管</a><a href="https://www.cdcxhl.com/" target="_blank">创新互联建站</a><a href="https://www.cdcxhl.com/quanwang.html" target="_blank">整合营销推广</a><a href="https://www.cdcxhl.com/xiyun.html" target="_blank">西云服务器托管</a><a href="https://www.cdcxhl.com/hangyead/" target="_blank">1元广告</a><a href="https://www.cdcxhl.com/link/" target="_blank">买卖链接</a><a href="https://www.cdcxhl.com/yunying.html" target="_blank">网站运营</a><a href="https://www.cdcxhl.com/mobile.html" target="_blank">手机网站建设</a><a href="https://www.cdcxhl.com/tuoguan/yaan/" target="_blank">雅安服务器托管</a><a href="https://www.cdcxhl.com/mobile.html" target="_blank">成都手机网站建设公司</a><a href="https://www.cdcxhl.com/sosuo.html" target="_blank">关键词优化排名</a><a href="https://www.cdcxhl.com/yunying.html" target="_blank">网站托管</a><a href="https://www.cdcxhl.com/xiangyingshi.html" target="_blank">响应式网站建设公司</a><a href="https://www.cdcxhl.com/shoulu/" target="_blank">网站免费收录</a><a href="https://www.cdcxhl.com/yingxiao.html" target="_blank">成都营销网站建设公司</a><a href="https://www.cdcxhl.com/mobile.html" target="_blank">手机网站建设公司</a><a href="https://www.cdcxhl.com/link/" target="_blank">友情链接</a><a href="https://www.cdcxhl.com/ruanwen/" target="_blank">软文营销推广</a> </div> </div> </div> <div class="foot"> <div class="container"> <div class="footNav"> <h3>网站建设</h3> <a href="http://chengdu.cdweb.net/" target="_blank">成都网站建设</a><a href="https://www.cdxwcx.com/city/jianyang/" target="_blank">简阳网站建设</a><a href="http://www.cdweb.net/" target="_blank">自适应网站建设</a> </div> <div class="footNav"> <h3>服务器托管</h3> <a href="https://www.cdcxhl.com/idc/yldx.html" target="_blank">义龙电信机房</a><a href="https://www.cdxwcx.com/jifang/guanghua.html" target="_blank">光华服务器托管</a><a href="https://www.xwcx.net/tgxq/cdghjf.html" target="_blank">成都光华机房</a> </div> <div class="footNav"> <h3>网站制作</h3> <a href="https://www.cdcxhl.com/" target="_blank">成都网站制作</a><a href="https://www.cdcxhl.com/" target="_blank">网站制作</a><a href="http://www.cxjianzhan.com/" target="_blank">成都网站制作</a> </div> <div class="footNav"> <h3>企业服务</h3> <a href="https://www.cdcxhl.com/shoulu/" target="_blank">免费收录</a><a href="https://www.cdcxhl.com/service/licence.html" target="_blank">药房许可证</a><a href="https://www.cdcxhl.com/ruanwen/" target="_blank">软文营销</a> </div> <div class="fr ecode"> <div class="fl"> <img src="/Public/Home/img/ewm.jpg"> <p>关注企业微信</p> </div> <div class="fr slogan"> <p class="icon"> <a class="ph" href=""><i class="iconfont"></i></a> <a class="qq" href="tencent://message/?uin=1683211881&Site=&Menu=yes"><i class="iconfont"></i></a> </p> <p> <i>想要找 </i> <a href="">小程序开发</a>、<a href="">APP开发</a>、 <a href="">营销型网站建设</a>、<a href="">网站建设</a>、 <i><a href="">网站定制开发</a></i> ,就选<a href="">创新互联</a> </p> </div> </div> </div> <div class="bottom container"> <p class="fl"> 版权所有:成都创新互联科技有限公司 备案号:<a href="https://beian.miit.gov.cn/" target="_blank" rel="nofollow">蜀ICP备19037934号</a> 服务热线:028-86922220 </p> <p class="fr"> <a href="https://www.cdxwcx.com/" target="_blank">成都网站建设</a>: <a href="https://www.cdcxhl.com/" target="_blank">创新互联</a> </p> </div> </div> </footer> <!--在线咨询--> <div class="fot"> <ul> <li> <a href="https://p.qiao.baidu.com/cps/mobileChat?siteId=11284691&userId=6256368&type=1&reqParam=%20{%22from%22:0,%22sessionid%22:%22%22,%22siteId%22:%2211284691%22,%22tid%22:%22-1%22,%22userId%22:%226256368%22,%22ttype%22:1,%22siteConfig%22:%20{%22eid%22:%226256368%22,%22queuing%22:%22%22,%22siteToken%22:%226ce441ff9e2d6bedbdfc2a4138de449e%22,%22userId%22:%226256368%22,%22isGray%22:%22false%22,%22wsUrl%22:%22wss://p.qiao.baidu.com/cps3/websocket%22,%22likeVersion%22:%22generic%22,%22siteId%22:%2211284691%22,%22online%22:%22true%22,%22webRoot%22:%22//p.qiao.baidu.com/cps3/%22,%22bid%22:%22160142915792139572%22,%22isSmallFlow%22:0,%22isPreonline%22:0,%22invited%22:0%20},%22config%22:%20{%22themeColor%22:%224d74fa%22%20}%20}&appId=&referer=&iswechat=0&expectWaiter=-1&openid=null&otherParam=null&telephone=null&speedLogId=null&eid=null&siteToken=6ce441ff9e2d6bedbdfc2a4138de449e" target="_blank"> <img src="/Public/Home/img/fot1.png" alt=""> <p>在线咨询</p> </a> </li> <li> <a href="tel:18980820575" target="_blank"> <img src="/Public/Home/img/fot2.png" alt=""> <p>拨打电话</p> </a> </li> </ul> </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>