RELATEED CONSULTING
相关咨询
选择下列产品马上在线沟通
服务时间:8:30-17:00
你可能遇到了下面的问题
关闭右侧工具栏

新闻中心

这里有您想知道的互联网营销解决方案
html中适合新手的练习示例-创新互联

这篇文章主要介绍了html中适合新手的练习示例,具有一定借鉴价值,感兴趣的朋友可以参考下,希望大家阅读完这篇文章之后大有收获,下面让小编带着大家一起了解一下。

成都创新互联是一家专业提供南皮企业网站建设,专注与网站设计制作、网站建设H5网站设计、小程序制作等业务。10年已为南皮众多企业、政府机构等服务。创新互联专业网站设计公司优惠进行中。

第1题 考察title标签

html中适合新手的练习示例

html中适合新手的练习示例

出现在<head>里面,表示页面的标题。直观上,我们可以在浏览器的标题栏(标签栏)中看见。</p><p>B正确。</p><p>第2题 考察的就是HTML的本质</p><p><img src="/upload/otherpic39/2853.jpg" alt="html中适合新手的练习示例"></p><p>答案:D</p><p>解析:首先HTML只依靠标签对儿表达语义,和是否缩进、换行没有任何关系;只要是标签有正确的嵌套关系,正确的父子关系,那么就是一个合法的HTML结构,不一定要缩进。百度的首页,为了减小文件体积,所以都是没有缩进的。提到HTML的作用,只能从语义方面从想,绝对不能想样式。所以C错误的。D正确。</p><p>第3题 考察常用属性</p><p><img src="/upload/otherpic39/2854.jpg" alt="html中适合新手的练习示例"></p><p>答案:D。</p><p>此题主要是考查插入图片和超链接的标签,这两句都是比较容易记住的,大家好记住一些常用的标签语句。</p><pre>1            <img src="1.jpg"  /> 2              3            <a  href="1.html">点击我</a></pre><p>img是image“图像”;</p><p>src是source“资源”;</p><p>a是anchor“锚”;</p><p>href是hypertext reference“超文本地址”</p><p>第4题 考察HTTP的原理</p><p><img src="/upload/otherpic39/2855.jpg" alt="html中适合新手的练习示例"></p><p>答案:B。</p><p>服务器上有一些文件,html、图片、css、js文件,通过HTTP请求传输到了用户的电脑里面。所以,第二次访问的时候,这些图片就不用传输了,所以页面变得快。</p><p>A,错误,没有所谓的vip通路。</p><p>B,正确</p><p>C,错误。因为HTTP不是一个持久连接的协议,传完就拉倒了,就关闭连接了,所以没有一个持续的通路。</p><p>D,错误。每次访问,都是不同的寻址过程,不会“记路”。</p><p>第5题 纯文本</p><p><img src="/upload/otherpic39/2856.jpg" alt="html中适合新手的练习示例"></p><p>答案:C。</p><p>用记事本打开,不是乱码,是可读的,那么一定是纯本文文件。只有文本,没有样式,没有语义。</p><p>所以,.java文件是纯文本的,.class文件不是纯文本的。</p><p>所有的纯文本文件都能用记事本、notepad++、editplus、sublime编辑。</p><p>第6题 考察XHTML</p><p><img src="/upload/otherpic39/2857.jpg" alt="html中适合新手的练习示例"></p><p>答案:B。</p><p>所有的标签名、属性都要小写,必须使用引号,必须封闭。答案是B</p><p>第7题 考察定义列表</p><p><img src="/upload/otherpic39/2858.jpg" alt="html中适合新手的练习示例"></p><p>答案:B。</p><p>一定要记住每个标签标示什么,就是英语原意是什么?比如</p><p>dl 就是definition list, 定义列表;</p><p>dt 就是definition title,定义标题;</p><p>dd就是definition description,定义描述</p><p>第8题 考察相对路径</p><p><img src="/upload/otherpic39/2859.jpg" alt="html中适合新手的练习示例"></p><br/><p>1.html中,有一个能够点击的图片。所以骨架:</p><pre>1            <a  href=""><img src="" /></a></pre><p>href里面是相对路径,要从1.html出发找到2.html;</p><p>src里面也是相对路径,要从1.html出发找到kaola.png。</p><p>标准答案:</p><pre>1            <a href="../myweb2/2.html" target="_blank"><img  src="../../photo/kaola.png"  /></a></pre><p>我们一直在用的是相对路径,就是从自己出发找到别人。用相对路径的好处很明显,就是站点文件夹可以拷着走。</p><p>相对路径的好处:站点不管拷贝到哪里,文件和图片的相对路径关系都是不变的。</p><p>相对路径使用有一个前提,就是网页文件和你的图片,必须在一个服务器上。</p><p>比如,你现在想插入一个新浪网上的图片,那么就不能用相对路径。就要用绝对路径。</p><p>绝对路径非常简单,所有以http://开头的路径,就是绝对路径。</p><pre><img src="http://i1.sinaimg.cn/dy/deco/2013/0329/logo/LOGO_1x.png"  alt="" /> <a href="http://www.sohu.com">点击我跳转到搜狐</a></pre><p>如果我的网页在C盘,图片却在D盘,能不能插入呢?</p><p>答案:用相对路径不能,用绝对路径也不能。</p><p>注意,可以使用file://来插入,但是这种方法,没有任何意义!因为服务器上没有所谓c盘、d盘。</p><p>下面的方法是行的,但是没有任何工程上的意义,这是因为服务器没有盘符,linux系统没有盘符,</p><pre><img  src="file://C:\Users\Danny\Pictures\ 明星 \1.jpg" alt="" /></pre><p>感谢你能够认真阅读完这篇文章,希望小编分享的“html中适合新手的练习示例”这篇文章对大家有帮助,同时也希望大家多多支持创新互联<a href="https://www.cdcxhl.com/" target="_blank">网站建设公司</a>,,关注创新互联行业资讯频道,更多相关知识等着你来学习!</p> <br> 网页名称:html中适合新手的练习示例-创新互联 <br> 转载来源:<a href="http://cqwzjz.cn/article/dogjgs.html">http://cqwzjz.cn/article/dogjgs.html</a> </div> <div class="hot_new"> <div class="page_title clearfix"> <h3>其他资讯</h3> </div> <div class="news_list clearfix"> <ul> <li> <a href="/article/jdedhc.html">PXC5.7.21forlinux7.2安装</a> </li><li> <a href="/article/jdedhg.html">python统计文本中字频的方法</a> </li><li> <a href="/article/jdecog.html">写vuejs可以用什么软件</a> </li><li> <a href="/article/jdedpc.html">MySQL枚举与集合类型的应用</a> </li><li> <a href="/article/jdecds.html">Vue如何监听一个数组id是否与另一个数组id相同</a> </li> </ul> </div> </div> </div> </div> </div> </div> </div> </div> </div> </div> </div> </div> </div> <!-- 底部信息 --> <div class="footer wow fadeInUp"> <div class="rowFluid"> <div class="span12"> <div class="container"> <div class="footer_content"> <div class="span4 col-xm-12"> <div class="footer_list"> <div class="span6"> <div class="bottom_logo"><img src="/Public/Home/images/ewm.jpg" alt="微信服务号二维码" /></div> </div> <div class="span6 col-xm-12"> <div class="quick_navigation"> <div class="quick_navigation_title">快速导航</div> <ul> <li><a href="https://www.scvps.cn/" title="申请域名" target="_blank">申请域名</a></li><li><a href="https://www.cdcxhl.com/shop.html" title="成都商城网站开发" target="_blank">成都商城网站开发</a></li><li><a href="http://www.3aiso.com/" title="证企宝企业" target="_blank">证企宝企业</a></li><li><a href="https://www.cdcxhl.com/yunying.html" title="网站托管运营" target="_blank">网站托管运营</a></li><li><a href="http://chengdu.cdcxhl.com/dingzhi/" title="定制网站建设" target="_blank">定制网站建设</a></li><li><a href="http://www.cdxwcx.cn/tuoguan/leshan.html" title="乐山托管服务器" target="_blank">乐山托管服务器</a></li><li><a href="http://www.cdkjz.cn/" title="高端网站建设" target="_blank">高端网站建设</a></li> </ul> </div> </div> </div> </div> <div class="span4 col-xm-6 col-xs-12"> <div class="footer_list"> <div class="footer_link"> <div class="footer_link_title">友情链接</div> <ul id="frientLinks"> <a href="https://www.cdcxhl.com/" title="网站制作" target="_blank">网站制作</a> <a href="https://www.cdcxhl.com/" title="网站建设" target="_blank">网站建设</a> <a href="https://www.cdxwcx.com/tuiguang/" title="成都网络推广" target="_blank">网络推广</a> <a href="http://seo.cdkjz.cn/" title="成都网站推广" target="_blank">网站推广</a> <a href="https://www.cdcxhl.com/xiaochengx.html" title="成都微信小程序开发" target="_blank">小程序开发</a> <a href="https://www.cdcxhl.com/menu.html" title="创新互联网站栏目导航" target="_blank">网站导航</a> </ul> <div class="footer_link_title">网站建设</div> <ul id="frientLinks"> <li><a href="/">重庆大橙子建站</a></li> <li><a href="https://www.cdcxhl.com/menu.html" title="创新互联网站栏目导航" target="_blank">网站导航</a></li> </ul> </div> </div> </div> <div class="span4 col-xm-6 col-xs-12"> <div class="footer_list"> <div class="footer_cotact"> <div class="footer_cotact_title">联系方式</div> <ul> <li><span class="footer_cotact_type">企业:</span><span class="footer_cotact_content">青羊区大橙子信息咨询工作室</span></li> <li><span class="footer_cotact_type">地址:</span><span class="footer_cotact_content">成都市青羊区太升南路288号</span></li> <li><span class="footer_cotact_type">电话:</span><span class="footer_cotact_content"><a href="tel:18980820575" class="call">18980820575</a></span></li> <li><span class="footer_cotact_type">网址:</span><span class="footer_cotact_content"><a href="/" title="重庆网站建设">www.cqwzjz.cn</a></span></li> </ul> </div> </div> </div> </div> </div> <div class="copyright"> <p>公司名称:青羊区大橙子信息咨询工作室 联系电话:18980820575</p> <p><a href="http://beian.miit.gov.cn" target="_blank" rel="nofollow">网站备案号:蜀ICP备2022028542号-22</a></p> <p>重庆大橙子建站 重庆网站建设 重庆网站设计 重庆网站制作 <a href="http://www.cdxwcx.cn/" target="_blank">成都做网站</a></p> </div> </div> </div> </div> </body> </html> <script> $(".technical_support_box_z_info_box 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>