国产xxxx99真实实拍_久久不雅视频_高清韩国a级特黄毛片_嗯老师别我我受不了了小说

資訊專欄INFORMATION COLUMN

HTML 基礎入門

Alan / 640人閱讀

摘要:最近學習的知識,屬于入門級別。粗略接觸感覺并不是十分枯燥困難,不過據說都是入門容易深入很難,但愿以后不會被難倒吧。也是一種規范,一種標準,它通過標記符號來標記要顯示的網頁中的各個部分。

最近學習HTML5的知識,屬于入門級別。粗略接觸感覺并不是十分枯燥困難,不過據說HTML都是入門容易深入很難,但愿以后不會被難倒吧。

首先介紹一下HTML

HTML是HyperText Markup Language(超文本標記語言)的簡寫,他不是一種編程語言,而是一種標記語言,用于告訴瀏覽器如何構造你的頁面。他可以由一系列HTML元素組合成web開發人員想要的簡單或者復雜的頁面。“超文本”就是指頁面內可以包含圖片、鏈接,甚至音樂、程序等非文字元素。HTML也是一種規范,一種標準,它通過標記符號來標記要顯示的網頁中的各個部分。網頁文件本身是一種文本文件,通過在文本文件中添加標記符,可以告訴瀏覽器如何顯示其中的內容(如:文字如何處理,畫面如何安排,圖片如何顯示等)。瀏覽器按順序閱讀網頁文件,然后根據標記符解釋和顯示其標記的內容,對書寫出錯的標記將不指出其錯誤,且不停止其解釋執行過程,編制者只能通過顯示效果來分析出錯原因和出錯部位。可以使用.html與.htm作為html文件的后綴名(擴展名)

HTML5 前段有三個要素

HTML

CSS

JS

先講其中HTML的元素
HTML的元素中包含單標簽元素和雙標簽元素,也分為塊級元素、行內元素和其它元素。具體在下面的內容中闡述。

一個完整的Html網頁是由多個Html元素按照一定的方式組成的。



    
    hello


  

Hello World

DOCTYPE
在Html非常年輕的時候(1991、2年左右),doctype是用來作為一組規則的鏈接,HTML頁面必須遵循這些規則才能被認為是好的HTML,這些規則會用來檢測網頁是不是存在問題。然而,這些年沒有人真正的關心doctype,他們只是一個歷史產物必須包含在頁面中。以下是我們需要簡單了解的,記住H5的文檔類型即可。
1.1嚴格的文檔類型

            

1.2寬松的文檔類型

    

1.3H5文檔類型


2.
Html的根元素,用來包含html文檔的所有元素
3.
包含在頭部的內容不會被顯示的頁面中,這里通常包含頁面的編碼,作者,頁面的描述信息,js的導入,css的導入等信息。
4.
用來聲明當前文檔的編碼方式為utf-8
5.<br> 用來聲明當前文檔的標題,標題將會出現在瀏覽器的選項卡中<br> 6.<body><br> 所有想要顯示在瀏覽器中的元素都被包含在該元素中。<br> 7.<p><br> html內容中的標簽元素</p> <b>講完以上的組成,接下來就講一講剛剛擱置的HTML元素,即上述的第七個內容</b> <p>上述的P標簽就屬于雙標簽,即由<p></p>組成,也是塊級元素,即獨占一行空間,用來布局段落,列表,導航菜單,腳注等結構,不要將塊級元素嵌套在行內元素中。<br> 除了p標簽以外,塊級元素還有div、h1-h6、uloldl等</p> <p>再來說說行內元素,行內元素與其他元素共享一行空間,一般被嵌套在塊級元素中,通常作為段落的一部分出現。<br> 常見的有spanaimg等</p> <p>除了這些之外還有表格<br> 表格的元素主要有caption、thead、tbody、tfoot</p> <b>今天暫時就先分享這些,內容粗淺,見笑啦。</b> </div> <div id="omyoueq" class="mt-64 tags-seach" > <div id="swmm8em" class="tags-info"> <a style="width:120px;" title="GPU云服務器" href="http://specialneedsforspecialkids.com/site/product/gpu.html">GPU云服務器</a> <a style="width:120px;" title="云服務器" href="http://specialneedsforspecialkids.com/site/active/kuaijiesale.html?ytag=seo">云服務器</a> <a style="width:120px;" title="HTML5基礎入門" href="http://specialneedsforspecialkids.com/yun/tag/HTML5jichurumen/">HTML5基礎入門</a> <a style="width:120px;" title="入門基礎" href="http://specialneedsforspecialkids.com/yun/tag/rumenjichu/">入門基礎</a> <a style="width:120px;" title="基礎入門" href="http://specialneedsforspecialkids.com/yun/tag/jichurumen/">基礎入門</a> <a style="width:120px;" title="python入門基礎" href="http://specialneedsforspecialkids.com/yun/tag/pythonrumenjichu/">python入門基礎</a> </div> </div> <div id="yagcq0m" class="entry-copyright mb-30"> <p class="mb-15"> 文章版權歸作者所有,未經允許請勿轉載,若此文章存在違規行為,您可以聯系管理員刪除。</p> <p>轉載請注明本文地址:http://specialneedsforspecialkids.com/yun/93691.html</p> </div> <ul class="pre-next-page"> <li id="k0sqwwy" class="ellipsis"><a class="hpf" href="http://specialneedsforspecialkids.com/yun/93690.html">上一篇:《同源策略》的簡單介紹</a></li> <li id="288yiaw" class="ellipsis"><a class="hpf" href="http://specialneedsforspecialkids.com/yun/93692.html">下一篇:javascript基礎之模塊</a></li> </ul> </div> <div id="o6sqgky" class="about_topicone-mid"> <h3 class="top-com-title mb-0"><span data-id="0">相關文章</span></h3> <ul class="com_white-left-mid atricle-list-box"> <li> <div id="s2y28au" class="atricle-list-right"> <h2 class="ellipsis2"><a class="hpf" href="http://specialneedsforspecialkids.com/yun/54517.html"><b><em>HTML</em> <em>基礎</em><em>入門</em></b></a></h2> <p class="ellipsis2 good">摘要:最近學習的知識,屬于入門級別。粗略接觸感覺并不是十分枯燥困難,不過據說都是入門容易深入很難,但愿以后不會被難倒吧。也是一種規范,一種標準,它通過標記符號來標記要顯示的網頁中的各個部分。 最近學習HTML5的知識,屬于入門級別。粗略接觸感覺并不是十分枯燥困難,不過據說HTML都是入門容易深入很難,但愿以后不會被難倒吧。 首先介紹一下HTML HTML是HyperText Markup ...</p> <div id="yi0akak" class="com_white-left-info"> <div id="ecckgeq" class="com_white-left-infol"> <a href="http://specialneedsforspecialkids.com/yun/u-1607.html"><img src="http://specialneedsforspecialkids.com/yun/data/avatar/000/00/16/small_000001607.jpg" alt=""><span id="y0kuuwe" class="layui-hide64">KavenFan</span></a> <time datetime="">2019-08-02 16:01</time> <span><i class="fa fa-commenting"></i>評論0</span> <span><i class="fa fa-star"></i>收藏0</span> </div> </div> </div> </li> <li> <div id="w00equc" class="atricle-list-right"> <h2 class="ellipsis2"><a class="hpf" href="http://specialneedsforspecialkids.com/yun/115886.html"><b><em>HTML</em> <em>基礎</em><em>入門</em></b></a></h2> <p class="ellipsis2 good">摘要:最近學習的知識,屬于入門級別。粗略接觸感覺并不是十分枯燥困難,不過據說都是入門容易深入很難,但愿以后不會被難倒吧。也是一種規范,一種標準,它通過標記符號來標記要顯示的網頁中的各個部分。 最近學習HTML5的知識,屬于入門級別。粗略接觸感覺并不是十分枯燥困難,不過據說HTML都是入門容易深入很難,但愿以后不會被難倒吧。 首先介紹一下HTML HTML是HyperText Markup ...</p> <div id="gg848qk" class="com_white-left-info"> <div id="iqoqwkq" class="com_white-left-infol"> <a href="http://specialneedsforspecialkids.com/yun/u-1596.html"><img src="http://specialneedsforspecialkids.com/yun/data/avatar/000/00/15/small_000001596.jpg" alt=""><span id="mwkqu2o" class="layui-hide64">cangck_X</span></a> <time datetime="">2019-08-30 14:15</time> <span><i class="fa fa-commenting"></i>評論0</span> <span><i class="fa fa-star"></i>收藏0</span> </div> </div> </div> </li> <li> <div id="0cck06y" class="atricle-list-right"> <h2 class="ellipsis2"><a class="hpf" href="http://specialneedsforspecialkids.com/yun/100352.html"><b>【連載】前端個人文章整理-從<em>基礎</em>到<em>入門</em></b></a></h2> <p class="ellipsis2 good">摘要:個人前端文章整理從最開始萌生寫文章的想法,到著手開始寫,再到現在已經一年的時間了,由于工作比較忙,更新緩慢,后面還是會繼更新,現將已經寫好的文章整理一個目錄,方便更多的小伙伴去學習。 showImg(https://segmentfault.com/img/remote/1460000017490740?w=1920&h=1080); 個人前端文章整理 從最開始萌生寫文章的想法,到著手...</p> <div id="0ecukgu" class="com_white-left-info"> <div id="sww2ame" class="com_white-left-infol"> <a href="http://specialneedsforspecialkids.com/yun/u-961.html"><img src="http://specialneedsforspecialkids.com/yun/data/avatar/000/00/09/small_000000961.jpg" alt=""><span id="sueiss2" class="layui-hide64">madthumb</span></a> <time datetime="">2019-08-23 14:15</time> <span><i class="fa fa-commenting"></i>評論0</span> <span><i class="fa fa-star"></i>收藏0</span> </div> </div> </div> </li> <li> <div id="qy2yukg" class="atricle-list-right"> <h2 class="ellipsis2"><a class="hpf" href="http://specialneedsforspecialkids.com/yun/1633.html"><b>前端<em>入門</em>1-<em>基礎</em>概念</b></a></h2> <p class="ellipsis2 good">摘要:基礎基礎是一種標記語言,不是編程語言,需要明確這點。元素標簽內容基礎基礎負責文本樣式的呈現,既然將和分離開,各自只負責各自的職責,那么肯定需要某種方式將兩者連接在一起。 本篇文章已授權微信公眾號 dasu_Android(大蘇)獨家發布 聲明 本系列文章內容全部梳理自以下四個來源: 《HTML5權威指南》 《JavaScript權威指南》 MDN web docs Github:smyh...</p> <div id="e2228o0" class="com_white-left-info"> <div id="0swqoic" class="com_white-left-infol"> <a href="http://specialneedsforspecialkids.com/yun/u-437.html"><img src="http://specialneedsforspecialkids.com/yun/data/avatar/000/00/04/small_000000437.jpg" alt=""><span id="misyycs" class="layui-hide64">codecraft</span></a> <time datetime="">2019-04-23 13:15</time> <span><i class="fa fa-commenting"></i>評論0</span> <span><i class="fa fa-star"></i>收藏0</span> </div> </div> </div> </li> </ul> </div> <div id="ok08gw8" class="topicone-box-wangeditor"> <h3 class="top-com-title mb-64"><span>發表評論</span></h3> <div id="0miqyqm" class="xcp-publish-main flex_box_zd"> <div id="c2oks2s" class="unlogin-pinglun-box"> <a href="javascript:login()" class="grad">登陸后可評論</a> </div> </div> </div> <div id="a2yeo20" class="site-box-content"> <div id="isqmcyk" class="site-content-title"> <h3 class="top-com-title mb-64"><span>0條評論</span></h3> </div> <div id="uqcsooy" class="pages"></ul></div> </div> </div> <div id="8kueqwi" class="layui-col-md4 layui-col-lg3 com_white-right site-wrap-right"> <div id="umom0ga" class=""> <div id="gyy0emk" class="com_layuiright-box user-msgbox"> <a href="http://specialneedsforspecialkids.com/yun/u-1211.html"><img src="http://specialneedsforspecialkids.com/yun/data/avatar/000/00/12/small_000001211.jpg" alt=""></a> <h3><a href="http://specialneedsforspecialkids.com/yun/u-1211.html" rel="nofollow">Alan</a></h3> <h6>男<span>|</span>高級講師</h6> <div id="ysai2ue" class="flex_box_zd user-msgbox-atten"> <a href="javascript:attentto_user(1211)" id="attenttouser_1211" class="grad follow-btn notfollow attention">我要關注</a> <a href="javascript:login()" title="發私信" >我要私信</a> </div> <div id="m06agwk" class="user-msgbox-list flex_box_zd"> <h3 class="hpf">TA的文章</h3> <a href="http://specialneedsforspecialkids.com/yun/ut-1211.html" class="box_hxjz">閱讀更多</a> </div> <ul class="user-msgbox-ul"> <li><h3 class="ellipsis"><a href="http://specialneedsforspecialkids.com/yun/124632.html">Java--String,StringBuffer,StringBuilder區別</a></h3> <p>閱讀 3061<span>·</span>2021-11-23 09:51</p></li> <li><h3 class="ellipsis"><a href="http://specialneedsforspecialkids.com/yun/118831.html">記憶是如何產生的 &amp;&amp; 程序員解夢</a></h3> <p>閱讀 1040<span>·</span>2021-09-02 15:21</p></li> <li><h3 class="ellipsis"><a href="http://specialneedsforspecialkids.com/yun/115643.html">使用veloticy-ui生成文字動畫</a></h3> <p>閱讀 3005<span>·</span>2019-08-30 13:56</p></li> <li><h3 class="ellipsis"><a href="http://specialneedsforspecialkids.com/yun/112990.html">你可能不知道的 css 內容塊</a></h3> <p>閱讀 1829<span>·</span>2019-08-29 14:12</p></li> <li><h3 class="ellipsis"><a href="http://specialneedsforspecialkids.com/yun/112772.html">webpack構建下換膚功能的思路</a></h3> <p>閱讀 708<span>·</span>2019-08-29 13:53</p></li> <li><h3 class="ellipsis"><a href="http://specialneedsforspecialkids.com/yun/111719.html">[譯]CSS Grid, Flexbox 和 Box Alignment:網頁布局的新系統</a></h3> <p>閱讀 1664<span>·</span>2019-08-29 11:32</p></li> <li><h3 class="ellipsis"><a href="http://specialneedsforspecialkids.com/yun/111640.html">理解并運用 CSS 的負 margin 值</a></h3> <p>閱讀 1325<span>·</span>2019-08-29 11:25</p></li> <li><h3 class="ellipsis"><a href="http://specialneedsforspecialkids.com/yun/110836.html">前端優化:RequireJS Optimizer 的使用和配置方法</a></h3> <p>閱讀 1493<span>·</span>2019-08-28 17:51</p></li> </ul> </div> <!-- 文章詳情右側廣告--> <div id="2couucg" class="com_layuiright-box"> <h6 class="top-com-title"><span>最新活動</span></h6> <div id="u88c2ys" class="com_adbox"> <div id="mksq4iu" class="layui-carousel" id="right-item"> <div carousel-item> <div> <a href="http://specialneedsforspecialkids.com/site/active/kuaijiesale.html?ytag=seo" rel="nofollow"> <img src="http://specialneedsforspecialkids.com/yun/data/attach/240625/2rTjEHmi.png" alt="云服務器"> </a> </div> <div> <a href="http://specialneedsforspecialkids.com/site/product/gpu.html" rel="nofollow"> <img src="http://specialneedsforspecialkids.com/yun/data/attach/240807/7NjZjdrd.png" alt="GPU云服務器"> </a> </div> </div> </div> </div> <!-- banner結束 --> <div id="ci0mc2u" class="adhtml"> </div> <script> $(function(){ $.ajax({ type: "GET", url:"http://specialneedsforspecialkids.com/yun/ad/getad/1.html", cache: false, success: function(text){ $(".adhtml").html(text); } }); }) </script> </div> </div> </div> </div> </div> </section> <!-- wap拉出按鈕 --> <div id="oiegoqc" class="site-tree-mobile layui-hide"> <i class="layui-icon layui-icon-spread-left"></i> </div> <!-- wap遮罩層 --> <div id="iaowm8i" class="site-mobile-shade"></div> <!--付費閱讀 --> <div class="2muawki" id="payread"> <div id="eieocwk" class="layui-form-item">閱讀需要支付1元查看</div> <div id="c2yecyk" class="layui-form-item"><button class="btn-right">支付并查看</button></div> </div> <script> var prei=0; $(".site-seo-depict pre").each(function(){ var html=$(this).html().replace("<code>","").replace("</code>","").replace('<code class="javascript hljs" codemark="1">',''); $(this).attr('data-clipboard-text',html).attr("id","pre"+prei); $(this).html("").append("<code>"+html+"</code>"); prei++; }) $(".site-seo-depict img").each(function(){ if($(this).attr("src").indexOf('data:image/svg+xml')!= -1){ $(this).remove(); } }) $("LINK[href*='style-49037e4d27.css']").remove(); $("LINK[href*='markdown_views-d7a94ec6ab.css']").remove(); layui.use(['jquery', 'layer','code'], function(){ $("pre").attr("class","layui-code"); $("pre").attr("lay-title",""); $("pre").attr("lay-skin",""); layui.code(); $(".layui-code-h3 a").attr("class","copycode").html("復制代碼 ").attr("onclick","copycode(this)"); }); function copycode(target){ var id=$(target).parent().parent().attr("id"); var clipboard = new ClipboardJS("#"+id); clipboard.on('success', function(e) { e.clearSelection(); alert("復制成功") }); clipboard.on('error', function(e) { alert("復制失敗") }); } //$(".site-seo-depict").html($(".site-seo-depict").html().slice(0, -5)); </script> <link rel="stylesheet" type="text/css" href="http://specialneedsforspecialkids.com/yun/static/js/neweditor/code/styles/tomorrow-night-eighties.css"> <script src="http://specialneedsforspecialkids.com/yun/static/js/neweditor/code/highlight.pack.js" type="text/javascript"></script> <script src="http://specialneedsforspecialkids.com/yun/static/js/clipboard.js"></script> <script>hljs.initHighlightingOnLoad();</script> <script> function setcode(){ var _html=''; document.querySelectorAll('pre code').forEach((block) => { var _tmptext=$.trim($(block).text()); if(_tmptext!=''){ _html=_html+_tmptext; console.log(_html); } }); } </script> <script> function payread(){ layer.open({ type: 1, title:"付費閱讀", shadeClose: true, content: $('#payread') }); } // 舉報 function jupao_tip(){ layer.open({ type: 1, title:false, shadeClose: true, content: $('#jubao') }); } $(".getcommentlist").click(function(){ var _id=$(this).attr("dataid"); var _tid=$(this).attr("datatid"); $("#articlecommentlist"+_id).toggleClass("hide"); var flag=$("#articlecommentlist"+_id).attr("dataflag"); if(flag==1){ flag=0; }else{ flag=1; //加載評論 loadarticlecommentlist(_id,_tid); } $("#articlecommentlist"+_id).attr("dataflag",flag); }) $(".add-comment-btn").click(function(){ var _id=$(this).attr("dataid"); $(".formcomment"+_id).toggleClass("hide"); }) $(".btn-sendartcomment").click(function(){ var _aid=$(this).attr("dataid"); var _tid=$(this).attr("datatid"); var _content=$.trim($(".commenttext"+_aid).val()); if(_content==''){ alert("評論內容不能為空"); return false; } var touid=$("#btnsendcomment"+_aid).attr("touid"); if(touid==null){ touid=0; } addarticlecomment(_tid,_aid,_content,touid); }) $(".button_agree").click(function(){ var supportobj = $(this); var tid = $(this).attr("id"); $.ajax({ type: "GET", url:"http://specialneedsforspecialkids.com/yun/index.php?topic/ajaxhassupport/" + tid, cache: false, success: function(hassupport){ if (hassupport != '1'){ $.ajax({ type: "GET", cache:false, url: "http://specialneedsforspecialkids.com/yun/index.php?topic/ajaxaddsupport/" + tid, success: function(comments) { supportobj.find("span").html(comments+"人贊"); } }); }else{ alert("您已經贊過"); } } }); }); function attenquestion(_tid,_rs){ $.ajax({ //提交數據的類型 POST GET type:"POST", //提交的網址 url:"http://specialneedsforspecialkids.com/yun/favorite/topicadd.html", //提交的數據 data:{tid:_tid,rs:_rs}, //返回數據的格式 datatype: "json",//"xml", "html", "script", "json", "jsonp", "text". //在請求之前調用的函數 beforeSend:function(){}, //成功返回之后調用的函數 success:function(data){ var data=eval("("+data+")"); console.log(data) if(data.code==2000){ layer.msg(data.msg,function(){ if(data.rs==1){ //取消收藏 $(".layui-layer-tips").attr("data-tips","收藏文章"); $(".layui-layer-tips").html('<i class="fa fa-heart-o"></i>'); } if(data.rs==0){ //收藏成功 $(".layui-layer-tips").attr("data-tips","已收藏文章"); $(".layui-layer-tips").html('<i class="fa fa-heart"></i>') } }) }else{ layer.msg(data.msg) } } , //調用執行后調用的函數 complete: function(XMLHttpRequest, textStatus){ postadopt=true; }, //調用出錯執行的函數 error: function(){ //請求出錯處理 postadopt=false; } }); } </script> <footer> <div id="kywskya" class="layui-container"> <div id="qi06oc2" class="flex_box_zd"> <div id="caio0qm" class="left-footer"> <h6><a href="http://specialneedsforspecialkids.com/"><img src="http://specialneedsforspecialkids.com/yun/static/theme/ukd//images/logo.png" alt="UCloud (優刻得科技股份有限公司)"></a></h6> <p>UCloud (優刻得科技股份有限公司)是中立、安全的云計算服務平臺,堅持中立,不涉足客戶業務領域。公司自主研發IaaS、PaaS、大數據流通平臺、AI服務平臺等一系列云計算產品,并深入了解互聯網、傳統企業在不同場景下的業務需求,提供公有云、混合云、私有云、專有云在內的綜合性行業解決方案。</p> </div> <div id="w0ks02c" class="right-footer layui-hidemd"> <ul class="flex_box_zd"> <li> <h6>UCloud與云服務</h6> <p><a href="http://specialneedsforspecialkids.com/site/about/intro/">公司介紹</a></p> <p><a >加入我們</a></p> <p><a href="http://specialneedsforspecialkids.com/site/ucan/onlineclass/">UCan線上公開課</a></p> <p><a href="http://specialneedsforspecialkids.com/site/solutions.html" >行業解決方案</a></p> <p><a href="http://specialneedsforspecialkids.com/site/pro-notice/">產品動態</a></p> </li> <li> <h6>友情鏈接</h6> <p><a >GPU算力平臺</a></p> <p><a >UCloud私有云</a></p> <p><a >SurferCloud</a></p> <p><a >工廠仿真軟件</a></p> <p><a >Pinex</a></p> <p><a >AI繪畫</a></p> </li> <li> <h6>社區欄目</h6> <p><a href="http://specialneedsforspecialkids.com/yun/column/index.html">專欄文章</a></p> <p><a href="http://specialneedsforspecialkids.com/yun/udata/">專題地圖</a></p> </li> <li> <h6>常見問題</h6> <p><a href="http://specialneedsforspecialkids.com/site/ucsafe/notice.html" >安全中心</a></p> <p><a href="http://specialneedsforspecialkids.com/site/about/news/recent/" >新聞動態</a></p> <p><a href="http://specialneedsforspecialkids.com/site/about/news/report/">媒體動態</a></p> <p><a href="http://specialneedsforspecialkids.com/site/cases.html">客戶案例</a></p> <p><a href="http://specialneedsforspecialkids.com/site/notice/">公告</a></p> </li> <li> <span><img src="https://static.ucloud.cn/7a4b6983f4b94bcb97380adc5d073865.png" alt="優刻得"></span> <p>掃掃了解更多</p></div> </div> <div id="keqgyy2" class="copyright">Copyright ? 2012-2023 UCloud 優刻得科技股份有限公司<i>|</i><a rel="nofollow" >滬公網安備 31011002000058號</a><i>|</i><a rel="nofollow" ></a> 滬ICP備12020087號-3</a><i>|</i> <script type="text/javascript" src="https://gyfk12.kuaishang.cn/bs/ks.j?cI=197688&fI=125915" charset="utf-8"></script> <script> var _hmt = _hmt || []; (function() { var hm = document.createElement("script"); hm.src = "https://hm.baidu.com/hm.js?290c2650b305fc9fff0dbdcafe48b59d"; var s = document.getElementsByTagName("script")[0]; s.parentNode.insertBefore(hm, s); })(); </script> <!-- Global site tag (gtag.js) - Google Analytics --> <script async src="https://www.googletagmanager.com/gtag/js?id=G-DZSMXQ3P9N"></script> <script> window.dataLayer = window.dataLayer || []; function gtag(){dataLayer.push(arguments);} gtag('js', new Date()); gtag('config', 'G-DZSMXQ3P9N'); </script> <script> (function(){ var el = document.createElement("script"); el.src = "https://lf1-cdn-tos.bytegoofy.com/goofy/ttzz/push.js?99f50ea166557aed914eb4a66a7a70a4709cbb98a54ecb576877d99556fb4bfc3d72cd14f8a76432df3935ab77ec54f830517b3cb210f7fd334f50ccb772134a"; el.id = "ttzz"; var s = document.getElementsByTagName("script")[0]; s.parentNode.insertBefore(el, s); })(window) </script></div> </div> </footer> <footer> <div class="friendship-link"> <p>感谢您访问我们的网站,您可能还对以下资源感兴趣:</p> <a href="http://specialneedsforspecialkids.com/" title="国产xxxx99真实实拍">国产xxxx99真实实拍</a> <div class="friend-links"> <a href="http://belistarlp.com/">国产黄色在线</a> </div> </div> </footer> <script> (function(){ var bp = document.createElement('script'); var curProtocol = window.location.protocol.split(':')[0]; if (curProtocol === 'https') { bp.src = 'https://zz.bdstatic.com/linksubmit/push.js'; } else { bp.src = 'http://push.zhanzhang.baidu.com/push.js'; } var s = document.getElementsByTagName("script")[0]; s.parentNode.insertBefore(bp, s); })(); </script> </body><div id="o0ymg" class="pl_css_ganrao" style="display: none;"><samp id="o0ymg"></samp><abbr id="o0ymg"></abbr><li id="o0ymg"></li><blockquote id="o0ymg"></blockquote><input id="o0ymg"></input><nav id="o0ymg"><dfn id="o0ymg"><tr id="o0ymg"></tr></dfn></nav><th id="o0ymg"><del id="o0ymg"><menu id="o0ymg"></menu></del></th><acronym id="o0ymg"></acronym><strong id="o0ymg"></strong><ul id="o0ymg"></ul><bdo id="o0ymg"><center id="o0ymg"><acronym id="o0ymg"></acronym></center></bdo><strike id="o0ymg"><tr id="o0ymg"><object id="o0ymg"></object></tr></strike><strong id="o0ymg"></strong><s id="o0ymg"><center id="o0ymg"><noscript id="o0ymg"></noscript></center></s><tr id="o0ymg"><ul id="o0ymg"><table id="o0ymg"></table></ul></tr><center id="o0ymg"><code id="o0ymg"><wbr id="o0ymg"></wbr></code></center><wbr id="o0ymg"><center id="o0ymg"><code id="o0ymg"></code></center></wbr><pre id="o0ymg"></pre><noframes id="o0ymg"></noframes><tr id="o0ymg"><li id="o0ymg"><table id="o0ymg"></table></li></tr><menu id="o0ymg"></menu><tr id="o0ymg"></tr><tr id="o0ymg"></tr><delect id="o0ymg"><nav id="o0ymg"><tfoot id="o0ymg"></tfoot></nav></delect><tbody id="o0ymg"></tbody><td id="o0ymg"><button id="o0ymg"><code id="o0ymg"></code></button></td><fieldset id="o0ymg"></fieldset><tr id="o0ymg"><wbr id="o0ymg"><button id="o0ymg"></button></wbr></tr><pre id="o0ymg"><abbr id="o0ymg"><source id="o0ymg"></source></abbr></pre><rt id="o0ymg"><pre id="o0ymg"><small id="o0ymg"></small></pre></rt><kbd id="o0ymg"></kbd><th id="o0ymg"><blockquote id="o0ymg"><table id="o0ymg"></table></blockquote></th><small id="o0ymg"><center id="o0ymg"><em id="o0ymg"></em></center></small><menu id="o0ymg"><tbody id="o0ymg"><ul id="o0ymg"></ul></tbody></menu><em id="o0ymg"><fieldset id="o0ymg"><samp id="o0ymg"></samp></fieldset></em><fieldset id="o0ymg"></fieldset><td id="o0ymg"></td><s id="o0ymg"></s><strong id="o0ymg"><blockquote id="o0ymg"><abbr id="o0ymg"></abbr></blockquote></strong><pre id="o0ymg"></pre><abbr id="o0ymg"></abbr><code id="o0ymg"></code><li id="o0ymg"><rt id="o0ymg"><acronym id="o0ymg"></acronym></rt></li><dl id="o0ymg"><blockquote id="o0ymg"><option id="o0ymg"></option></blockquote></dl><delect id="o0ymg"><optgroup id="o0ymg"><dfn id="o0ymg"></dfn></optgroup></delect><menu id="o0ymg"><th id="o0ymg"><del id="o0ymg"></del></th></menu><tr id="o0ymg"></tr><del id="o0ymg"></del><cite id="o0ymg"></cite><delect id="o0ymg"></delect><tr id="o0ymg"></tr><td id="o0ymg"></td><dl id="o0ymg"><xmp id="o0ymg"><option id="o0ymg"></option></xmp></dl><strike id="o0ymg"></strike><center id="o0ymg"></center><xmp id="o0ymg"><abbr id="o0ymg"><strong id="o0ymg"></strong></abbr></xmp><pre id="o0ymg"></pre><strike id="o0ymg"><dd id="o0ymg"><em id="o0ymg"></em></dd></strike><sup id="o0ymg"><noscript id="o0ymg"><wbr id="o0ymg"></wbr></noscript></sup><code id="o0ymg"></code><small id="o0ymg"></small><tr id="o0ymg"><s id="o0ymg"><center id="o0ymg"></center></s></tr><tr id="o0ymg"></tr><strong id="o0ymg"><td id="o0ymg"><sup id="o0ymg"></sup></td></strong><object id="o0ymg"><dfn id="o0ymg"><noscript id="o0ymg"></noscript></dfn></object><tfoot id="o0ymg"></tfoot><tbody id="o0ymg"><del id="o0ymg"><rt id="o0ymg"></rt></del></tbody><strike id="o0ymg"><delect id="o0ymg"><optgroup id="o0ymg"></optgroup></delect></strike><code id="o0ymg"><xmp id="o0ymg"><abbr id="o0ymg"></abbr></xmp></code><menu id="o0ymg"><dl id="o0ymg"><del id="o0ymg"></del></dl></menu><rt id="o0ymg"></rt><sup id="o0ymg"><tr id="o0ymg"><s id="o0ymg"></s></tr></sup><tbody id="o0ymg"></tbody><option id="o0ymg"></option><button id="o0ymg"></button><table id="o0ymg"><dl id="o0ymg"><ul id="o0ymg"></ul></dl></table><bdo id="o0ymg"></bdo><noframes id="o0ymg"></noframes><em id="o0ymg"></em><wbr id="o0ymg"></wbr><dfn id="o0ymg"></dfn><cite id="o0ymg"></cite><th id="o0ymg"></th><td id="o0ymg"><button id="o0ymg"><tbody id="o0ymg"></tbody></button></td><tbody id="o0ymg"></tbody><tr id="o0ymg"></tr><rt id="o0ymg"><pre id="o0ymg"><cite id="o0ymg"></cite></pre></rt><em id="o0ymg"></em><tbody id="o0ymg"></tbody><center id="o0ymg"></center><bdo id="o0ymg"><center id="o0ymg"><pre id="o0ymg"></pre></center></bdo><fieldset id="o0ymg"></fieldset><abbr id="o0ymg"></abbr><sup id="o0ymg"></sup><s id="o0ymg"><sup id="o0ymg"><noscript id="o0ymg"></noscript></sup></s><ul id="o0ymg"></ul><dl id="o0ymg"></dl><tbody id="o0ymg"></tbody><menu id="o0ymg"></menu><kbd id="o0ymg"></kbd><samp id="o0ymg"></samp><tbody id="o0ymg"><ul id="o0ymg"><table id="o0ymg"></table></ul></tbody><xmp id="o0ymg"><table id="o0ymg"><th id="o0ymg"></th></table></xmp><del id="o0ymg"></del><th id="o0ymg"></th><kbd id="o0ymg"></kbd><sup id="o0ymg"><noscript id="o0ymg"><wbr id="o0ymg"></wbr></noscript></sup><center id="o0ymg"><acronym id="o0ymg"><cite id="o0ymg"></cite></acronym></center><samp id="o0ymg"></samp><option id="o0ymg"><code id="o0ymg"><td id="o0ymg"></td></code></option><rt id="o0ymg"></rt><noframes id="o0ymg"></noframes><input id="o0ymg"></input><dd id="o0ymg"><em id="o0ymg"><bdo id="o0ymg"></bdo></em></dd><xmp id="o0ymg"></xmp><td id="o0ymg"></td><abbr id="o0ymg"></abbr><button id="o0ymg"><code id="o0ymg"><wbr id="o0ymg"></wbr></code></button><del id="o0ymg"></del><samp id="o0ymg"><noframes id="o0ymg"><strike id="o0ymg"></strike></noframes></samp><tbody id="o0ymg"></tbody><em id="o0ymg"><cite id="o0ymg"><dd id="o0ymg"></dd></cite></em><source id="o0ymg"></source><nav id="o0ymg"></nav><tbody id="o0ymg"></tbody><em id="o0ymg"><fieldset id="o0ymg"><delect id="o0ymg"></delect></fieldset></em><noscript id="o0ymg"><wbr id="o0ymg"><button id="o0ymg"></button></wbr></noscript><ul id="o0ymg"></ul><rt id="o0ymg"><acronym id="o0ymg"><bdo id="o0ymg"></bdo></acronym></rt><pre id="o0ymg"></pre><rt id="o0ymg"></rt><tbody id="o0ymg"><object id="o0ymg"><center id="o0ymg"></center></object></tbody><tfoot id="o0ymg"><noscript id="o0ymg"><object id="o0ymg"></object></noscript></tfoot><option id="o0ymg"></option><tfoot id="o0ymg"></tfoot><table id="o0ymg"></table><source id="o0ymg"><acronym id="o0ymg"><small id="o0ymg"></small></acronym></source><del id="o0ymg"></del><dfn id="o0ymg"></dfn><dl id="o0ymg"></dl><pre id="o0ymg"></pre><noframes id="o0ymg"></noframes><source id="o0ymg"></source><nav id="o0ymg"></nav><bdo id="o0ymg"><dd id="o0ymg"><em id="o0ymg"></em></dd></bdo><option id="o0ymg"></option><center id="o0ymg"></center><wbr id="o0ymg"></wbr><kbd id="o0ymg"></kbd><pre id="o0ymg"><abbr id="o0ymg"><rt id="o0ymg"></rt></abbr></pre></div> <script src="http://specialneedsforspecialkids.com/yun/static/theme/ukd/js/common.js"></script> <<script type="text/javascript"> $(".site-seo-depict *,.site-content-answer-body *,.site-body-depict *").css("max-width","100%"); </script> </html>