\n\n\n\n\n\n
    Name<\/th>\nCountry<\/th>\n<\/tr>\n
    Dhoni<\/td>\nIndia<\/td>\n<\/tr>\n
    David Miller<\/td>\nSouth Africa<\/td>\n<\/tr>\n
    Joe Root<\/td>\nEngland<\/td>\n<\/tr>\n<\/table>\n<\/body><\/pre>\n

    Save the code with a .html extension and open it in the browser. It will display the following output:<\/p>\n

    \"HTML<\/p>\n

    2. Table Caption<\/h4>\n

    The table caption can be specified using the <<\/strong>caption><\/strong> tag.<\/p>\n

    Example<\/strong><\/p>\n

    \n\n\nHTML Table Tag Usage<\/title>\n<\/head>\n<body>
    <h1><a href="http://m.miracleart.cn/">国产av日韩一区二区三区精品,成人性爱视频在线观看,国产,欧美,日韩,一区,www.成色av久久成人,2222eeee成人天堂</a></h1>\n<table border = \"1\">\n<caption>This is Table Caption<\/caption>\n<tr>\n<th>Name<\/th>\n<th>Country<\/th>\n<\/tr>\n<tr>\n<td>Dhoni<\/td>\n<td>India<\/td>\n<\/tr>\n<tr>\n<td>David Miller<\/td>\n<td>South Africa<\/td>\n<\/tr>\n<tr>\n<td>Joe Root<\/td>\n<td>England<\/td>\n<\/tr>\n<\/table>\n<\/body><\/pre>\n<p>The above code will display the below output:<\/p>\n<p><img  src=\"https:\/\/img.php.cn\/upload\/article\/000\/000\/000\/172543802771799.png\" alt=\"HTML Table Tags\" ><\/p>\n<h4>3. Table Cell Spacing<\/h4>\n<p>The table cells’ space can be defined using the cellspacing attribute. The cellspacing attribute specifies the space between table cells.<\/p>\n<p><strong>Example<\/strong><\/p>\n<pre><!DOCTYPE html>\n<html>\n<head>\n<title>HTML Table Tag Usage<\/title>\n<\/head>\n<body>\n<table border = \"1\" cellspacing = \"5\">\n<tr>\n<th>Name<\/th>\n<th>Country<\/th>\n<\/tr>\n<tr>\n<td>Dhoni<\/td>\n<td>India<\/td>\n<\/tr>\n<tr>\n<td>David Miller<\/td>\n<td>South Africa<\/td>\n<\/tr>\n<tr>\n<td>Joe Root<\/td>\n<td>England<\/td>\n<\/tr>\n<\/table>\n<\/body><\/pre>\n<p>The above code will display the following output:<\/p>\n<p><img  src=\"https:\/\/img.php.cn\/upload\/article\/000\/000\/000\/172543802939006.png\" alt=\"HTML Table Tags\" ><\/p>\n<h4>4. Table Cell Padding<\/h4>\n<p>The table cells’ padding can be defined using the cellpadding attribute. The cellpadding attribute distance between the table cell border and data.<\/p>\n<p><strong>Example<\/strong><\/p>\n<pre><!DOCTYPE html>\n<html>\n<head>\n<title>HTML Table Tag Usage<\/title>\n<\/head>\n<body>\n<table border = \"1\" cellpadding = \"5\">\n<tr>\n<th>Name<\/th>\n<th>Country<\/th>\n<\/tr>\n<tr>\n<td>Dhoni<\/td>\n<td>India<\/td>\n<\/tr>\n<tr>\n<td>David Miller<\/td>\n<td>South Africa<\/td>\n<\/tr>\n<tr>\n<td>Joe Root<\/td>\n<td>England<\/td>\n<\/tr>\n<\/table>\n<\/body><\/pre>\n<p>The above code will display the below output:<\/p>\n<p><img  src=\"https:\/\/img.php.cn\/upload\/article\/000\/000\/000\/172543803182003.png\" alt=\"HTML Table Tags\" ><\/p>\n<h4>5. Column and Row Span Attributes<\/h4>\n<p>You can merge two or more table rows into a single row by using the rowspan attribute, and you can merge table columns into a single column by using the colspan attribute.<\/p>\n<p><strong>Example<\/strong><\/p>\n<pre><!DOCTYPE html>\n<html>\n<head>\n<title>HTML Table Tag Usage<\/title>\n<\/head>\n<body>\n<table border = \"1\">\n<tr>\n<th>Column One<\/th>\n<th>Column Two<\/th>\n<th>Column Three<\/th>\n<\/tr>\n<tr>\n<td rowspan = \"2\">Row One<\/td>\n<td>Row Two<\/td>\n<td>Row Three<\/td>\n<\/tr>\n<tr>\n<td>Row Four<\/td>\n<td>Row Five<\/td>\n<\/tr>\n<tr>\n<td colspan = \"3\">Row Six<\/td>\n<\/tr>\n<\/table>\n<\/body><\/pre>\n<p>The code will display the following output:<\/p>\n<p><img  src=\"https:\/\/img.php.cn\/upload\/article\/000\/000\/000\/172543803423687.png\" alt=\"HTML Table Tags\" ><\/p>\n<h4>6. Background for Table<\/h4>\n<p>You can create the background of the table by using the bgcolor attribute. The table cell border can be specified by using the border-color attribute.<\/p>\n<p><strong>Example<\/strong><\/p>\n<pre><!DOCTYPE html>\n<html>\n<head>\n<title>HTML Table Tag Usage<\/title>\n<\/head>\n<body>\n<table border = \"1\" bordercolor = \"red\" bgcolor = \"lightblue\">\n<tr>\n<th>Name<\/th>\n<th>Country<\/th>\n<\/tr>\n<tr>\n<td>Dhoni<\/td>\n<td>India<\/td>\n<\/tr>\n<tr>\n<td>David Miller<\/td>\n<td>South Africa<\/td>\n<\/tr>\n<tr>\n<td>Joe Root<\/td>\n<td>England<\/td>\n<\/tr>\n<\/table>\n<\/body><\/pre>\n<p>Execute the above code, and it will display the below output:<\/p>\n<p><img  src=\"https:\/\/img.php.cn\/upload\/article\/000\/000\/000\/172543803799982.png\" alt=\"HTML Table Tags\" ><\/p>\n<h4>7. Height and Width of the Table<\/h4>\n<p>You can set the height and width of the table by using the width and height attributes.<\/p>\n<p><strong>Example<\/strong><\/p>\n<pre><!DOCTYPE html>\n<html>\n<head>\n<title>HTML Table Tag Usage<\/title>\n<\/head>\n<body>\n<table border = \"1\" width = \"500\" height = \"250\" bgcolor = \"lightblue\">\n<tr>\n<th>Name<\/th>\n<th>Country<\/th>\n<\/tr>\n<tr>\n<td>Dhoni<\/td>\n<td>India<\/td>\n<\/tr>\n<tr>\n<td>David Miller<\/td>\n<td>South Africa<\/td>\n<\/tr>\n<tr>\n<td>Joe Root<\/td>\n<td>England<\/td>\n<\/tr>\n<\/table>\n<\/body><\/pre>\n<p>The above code will display the following output:<\/p>\n<p><img  src=\"https:\/\/img.php.cn\/upload\/article\/000\/000\/000\/172543804021296.png\" alt=\"HTML Table Tags\" ><\/p>\n\n\n<h4>8. Styling Table Cells<\/h4>\n<p><strong>Example<\/strong><\/p>\n<pre><!DOCTYPE html>\n<html>\n<head>\n<title>HTML Table Tag Usage<\/title>\n<\/head>\n<style>\ntable, th, td {\nborder: 1px solid red;\nborder-collapse: collapse;\n}\nth, td {\npadding: 15px;\n}\ntable#mytable tr:nth-child(even) {\nbackground-color: #FAD7A0;\n}\ntable#mytable tr:nth-child(odd) {\nbackground-color: #E67E22;\n}\ntable#mytable th {\ncolor: white;\nbackground-color: teal;\n}\n<\/style>\n<body>\n<table id=\"mytable\" border = \"1\" width = \"450\" height = \"350\">\n<tr>\n<th>Name<\/th>\n<th>Country<\/th>\n<\/tr>\n<tr>\n<td>Dhoni<\/td>\n<td>India<\/td>\n<\/tr>\n<tr>\n<td>David Miller<\/td>\n<td>South Africa<\/td>\n<\/tr>\n<tr>\n<td>Joe Root<\/td>\n<td>England<\/td>\n<\/tr>\n<\/table>\n<\/body><\/pre>\n<p>Execute the above code; you will have the below output:<\/p>\n<p><img  src=\"https:\/\/img.php.cn\/upload\/article\/000\/000\/000\/172543804166022.png\" alt=\"HTML Table Tags\" ><\/p>\n<h4>8. Nested Tables<\/h4>\n<p>You can use one table inside another table is called a nested table.<\/p>\n<p>Let us consider the below example for the nested table:<\/p>\n<p><strong>Example<\/strong><\/p>\n<pre><!DOCTYPE html>\n<html>\n<head>\n<title>HTML Table Tag Usage<\/title>\n<\/head>\n<body>\n<table border = \"1\" width = \"500\" height = \"250\">\n<tr>\n<td>\n<table border = \"1\" width = \"500\" height = \"250\" bgcolor = \"lightblue\">\n<tr>\n<th>Name<\/th>\n<th>Country<\/th>\n<\/tr>\n<tr>\n<td>Dhoni<\/td>\n<td>India<\/td>\n<\/tr>\n<tr>\n<td>David Miller<\/td>\n<td>South Africa<\/td>\n<\/tr>\n<tr>\n<td>Joe Root<\/td>\n<td>England<\/td>\n<\/tr>\n<\/table>\n<\/td>\n<\/tr>\n<\/table>\n<\/body><\/pre>\n<p>The above code will display the following output:<\/p>\n<p><img  src=\"https:\/\/img.php.cn\/upload\/article\/000\/000\/000\/172543804437421.png\" alt=\"HTML Table Tags\" ><\/p>\n<h3>Attributes of Table<\/h3>\n<p>Below are the attributes as follows:<\/p>\n<ul>\n<li>\n<strong>align:<\/strong> This attribute provides content alignment inside an element.<\/li>\n<li>\n<strong>bgcolor:<\/strong> This attribute specifies the background color for the table.<\/li>\n<li>\n<strong>border:<\/strong> This attribute specifies the border for the table cells.<\/li>\n<li>\n<strong>cellpadding:<\/strong> This attribute displays the padding between table cells and table content.<\/li>\n<li>\n<strong>cellspacing:<\/strong> This attribute indicates the space between table cells.<\/li>\n<li>\n<strong>frame:<\/strong> It specifies which parts of the outside borders are visible.<\/li>\n<li>\n<strong>rules:<\/strong> This specifies which parts of the inside borders are visible.<\/li>\n<li>\n<strong>sortable:<\/strong> This attribute informs that the table is sortable.<\/li>\n<li>\n<strong>summary:<\/strong> It provides what type of table content is present.<\/li>\n<li>\n<strong>width:<\/strong> This attribute tells the width of the table.<\/li>\n<li>\n<strong>height:<\/strong> This attribute specifies the height of the table.<\/li>\n<\/ul>\n<h3>Conclusion<\/h3>\n<p>So far, we have studied the different types of table tags in HTML. The examples have shown the usage of styling the table, nesting one table within another table, setting the height and width of the table, adding spacing and padding for the table cells, applying background color for the table, and many more.<\/p>"}	</script>
    	
    <meta http-equiv="Cache-Control" content="no-transform" />
    <meta http-equiv="Cache-Control" content="no-siteapp" />
    <script>var V_PATH="/";window.onerror=function(){ return true; };</script>
    </head>
    
    <body data-commit-time="2023-12-28T14:50:12+08:00" class="editor_body body2_2">
    	<link rel="stylesheet" type="text/css" href="/static/csshw/stylehw.css">
    <header>
        <div   id="377j5v51b"   class="head">
            <div   id="377j5v51b"   class="haed_left">
                <div   id="377j5v51b"   class="haed_logo">
                    <a href="http://m.miracleart.cn/" title="" class="haed_logo_a">
                        <img src="/static/imghw/logo.png" alt="" class="haed_logoimg">
                    </a>
                </div>
                <div   id="377j5v51b"   class="head_nav">
                    <div   id="377j5v51b"   class="head_navs">
                        <a href="javascript:;" title="Community" class="head_nava head_nava-template1">Community</a>
                        <div   class="377j5v51b"   id="dropdown-template1" style="display: none;">
                            <div   id="377j5v51b"   class="languagechoose">
                                <a href="http://m.miracleart.cn/article.html" title="Articles" class="languagechoosea on">Articles</a>
                                <a href="http://m.miracleart.cn/faq/zt" title="Topics" class="languagechoosea">Topics</a>
                                <a href="http://m.miracleart.cn/wenda.html" title="Q&A" class="languagechoosea">Q&A</a>
                            </div>
                        </div>
                    </div>
    
                    <div   id="377j5v51b"   class="head_navs">
                        <a href="javascript:;" title="Learn" class="head_nava head_nava-template1_1">Learn</a>
                        <div   class="377j5v51b"   id="dropdown-template1_1" style="display: none;">
                            <div   id="377j5v51b"   class="languagechoose">
                                <a href="http://m.miracleart.cn/course.html" title="Course" class="languagechoosea on">Course</a>
                                <a href="http://m.miracleart.cn/dic/" title="Programming Dictionary" class="languagechoosea">Programming Dictionary</a>
                            </div>
                        </div>
                    </div>
    
                    <div   id="377j5v51b"   class="head_navs">
                        <a href="javascript:;" title="Tools Library" class="head_nava head_nava-template1_2">Tools Library</a>
                        <div   class="377j5v51b"   id="dropdown-template1_2" style="display: none;">
                            <div   id="377j5v51b"   class="languagechoose">
                                <a href="http://m.miracleart.cn/toolset/development-tools" title="Development tools" class="languagechoosea on">Development tools</a>
                                <a href="http://m.miracleart.cn/toolset/website-source-code" title="Website Source Code" class="languagechoosea">Website Source Code</a>
                                <a href="http://m.miracleart.cn/toolset/php-libraries" title="PHP Libraries" class="languagechoosea">PHP Libraries</a>
                                <a href="http://m.miracleart.cn/toolset/js-special-effects" title="JS special effects" class="languagechoosea on">JS special effects</a>
                                <a href="http://m.miracleart.cn/toolset/website-materials" title="Website Materials" class="languagechoosea on">Website Materials</a>
                                <a href="http://m.miracleart.cn/toolset/extension-plug-ins" title="Extension plug-ins" class="languagechoosea on">Extension plug-ins</a>
                            </div>
                        </div>
                    </div>
    
                    <div   id="377j5v51b"   class="head_navs">
                        <a href="http://m.miracleart.cn/ai" title="AI Tools" class="head_nava head_nava-template1_3">AI Tools</a>
                    </div>
    
                    <div   id="377j5v51b"   class="head_navs">
                        <a href="javascript:;" title="Leisure" class="head_nava head_nava-template1_3">Leisure</a>
                        <div   class="377j5v51b"   id="dropdown-template1_3" style="display: none;">
                            <div   id="377j5v51b"   class="languagechoose">
                                <a href="http://m.miracleart.cn/game" title="Game Download" class="languagechoosea on">Game Download</a>
                                <a href="http://m.miracleart.cn/mobile-game-tutorial/" title="Game Tutorials" class="languagechoosea">Game Tutorials</a>
    
                            </div>
                        </div>
                    </div>
                </div>
            </div>
                        <div   id="377j5v51b"   class="head_search">
                    <input id="key_words"  onkeydown="if (event.keyCode == 13) searchs('en')" class="search-input" type="text" autocomplete="off" name="keywords" required="required" placeholder="Block,address,transaction,news" value="">
                    <a href="javascript:;" title="search"  onclick="searchs('en')"><img src="/static/imghw/find.png" alt="search"></a>
                </div>
                    <div   id="377j5v51b"   class="head_right">
                <div   id="377j5v51b"   class="haed_language">
                    <a href="javascript:;" class="layui-btn haed_language_btn">English<i class="layui-icon layui-icon-triangle-d"></i></a>
                    <div   class="377j5v51b"   id="dropdown-template" style="display: none;">
                        <div   id="377j5v51b"   class="languagechoose">
                                                    <a href="javascript:setlang('zh-cn');" title="簡(jiǎn)體中文" class="languagechoosea">簡(jiǎn)體中文</a>
                                                    <a href="javascript:;" title="English" class="languagechoosea">English</a>
                                                    <a href="javascript:setlang('zh-tw');" title="繁體中文" class="languagechoosea">繁體中文</a>
                                                    <a href="javascript:setlang('ja');" title="日本語(yǔ)" class="languagechoosea">日本語(yǔ)</a>
                                                    <a href="javascript:setlang('ko');" title="???" class="languagechoosea">???</a>
                                                    <a href="javascript:setlang('ms');" title="Melayu" class="languagechoosea">Melayu</a>
                                                    <a href="javascript:setlang('fr');" title="Fran?ais" class="languagechoosea">Fran?ais</a>
                                                    <a href="javascript:setlang('de');" title="Deutsch" class="languagechoosea">Deutsch</a>
                                                </div>
                    </div>
                </div>
                <span id="377j5v51b"    class="head_right_line"></span>
                                <div style="display: block;" id="login" class="haed_login ">
                        <a href="javascript:;"  title="Login" class="haed_logina ">Login</a>
                    </div>
                    <div style="display: block;" id="reg" class="head_signup login">
                        <a href="javascript:;"  title="singup" class="head_signupa">singup</a>
                    </div>
                
            </div>
        </div>
    </header>
    
    	
    	<main>
    		<div   id="377j5v51b"   class="Article_Details_main">
    			<div   id="377j5v51b"   class="Article_Details_main1">
    							<div   id="377j5v51b"   class="Article_Details_main1L">
    					<div   id="377j5v51b"   class="Article_Details_main1Lmain" id="Article_Details_main1Lmain">
    						<div   id="377j5v51b"   class="Article_Details_main1L1">Table of Contents</div>
    						<div   id="377j5v51b"   class="Article_Details_main1L2" id="Article_Details_main1L2">
    							<!-- 左側(cè)懸浮,文章定位標(biāo)題1 id="Article_Details_main1L2s_1"-->
    															<div   id="377j5v51b"   class="Article_Details_main1L2s ">
    									<a href="#Examples-of-HTML-Table-Tags" title="Examples of?HTML Table Tags" >Examples of?HTML Table Tags</a>
    								</div>
    																<div   id="377j5v51b"   class="Article_Details_main1L2s ">
    									<a href="#Basic-Table-Usage" title="1. Basic Table Usage" >1. Basic Table Usage</a>
    								</div>
    																<div   id="377j5v51b"   class="Article_Details_main1L2s ">
    									<a href="#Table-Caption" title="2. Table Caption" >2. Table Caption</a>
    								</div>
    																<div   id="377j5v51b"   class="Article_Details_main1L2s ">
    									<a href="#Table-Cell-Spacing" title="3. Table Cell Spacing" >3. Table Cell Spacing</a>
    								</div>
    																<div   id="377j5v51b"   class="Article_Details_main1L2s ">
    									<a href="#Table-Cell-Padding" title="4. Table Cell Padding" >4. Table Cell Padding</a>
    								</div>
    																<div   id="377j5v51b"   class="Article_Details_main1L2s ">
    									<a href="#Column-and-Row-Span-Attributes" title="5. Column and Row Span Attributes" >5. Column and Row Span Attributes</a>
    								</div>
    																<div   id="377j5v51b"   class="Article_Details_main1L2s ">
    									<a href="#Background-for-Table" title="6. Background for Table" >6. Background for Table</a>
    								</div>
    																<div   id="377j5v51b"   class="Article_Details_main1L2s ">
    									<a href="#Height-and-Width-of-the-Table" title="7. Height and Width of the Table" >7. Height and Width of the Table</a>
    								</div>
    																<div   id="377j5v51b"   class="Article_Details_main1L2s ">
    									<a href="#Styling-Table-Cells" title="8. Styling Table Cells" >8. Styling Table Cells</a>
    								</div>
    																<div   id="377j5v51b"   class="Article_Details_main1L2s ">
    									<a href="#Nested-Tables" title="8. Nested Tables" >8. Nested Tables</a>
    								</div>
    																<div   id="377j5v51b"   class="Article_Details_main1L2s ">
    									<a href="#Attributes-of-Table" title="Attributes of Table" >Attributes of Table</a>
    								</div>
    																<div   id="377j5v51b"   class="Article_Details_main1L2s ">
    									<a href="#Conclusion" title="Conclusion" >Conclusion</a>
    								</div>
    														</div>
    					</div>
    				</div>
    							<div   id="377j5v51b"   class="Article_Details_main1M">
    					<div   id="377j5v51b"   class="phpgenera_Details_mainL1">
    						<a href="http://m.miracleart.cn/" title="Home"
    							class="phpgenera_Details_mainL1a">Home</a>
    						<img src="/static/imghw/top_right.png" alt="" />
    												<a href="http://m.miracleart.cn/web-designer.html"
    							class="phpgenera_Details_mainL1a">Web Front-end</a>
    						<img src="/static/imghw/top_right.png" alt="" />
    												<a href="http://m.miracleart.cn/div-tutorial.html"
    							class="phpgenera_Details_mainL1a">HTML Tutorial</a>
    						<img src="/static/imghw/top_right.png" alt="" />
    						<span>HTML Table Tags</span>
    					</div>
    					
    					<div   id="377j5v51b"   class="Articlelist_txts">
    						<div   id="377j5v51b"   class="Articlelist_txts_info">
    							<h1 class="Articlelist_txts_title">HTML Table Tags</h1>
    							<div   id="377j5v51b"   class="Articlelist_txts_info_head">
    								<div   id="377j5v51b"   class="author_info">
    									<a href="http://m.miracleart.cn/member/887227.html"  class="author_avatar">
    									<img class="lazy"  data-src="https://img.php.cn/upload/avatar/000/887/227/63bb7851c9547215.jpg" src="/static/imghw/default1.png" alt="WBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWB">
    									</a>
    									<div   id="377j5v51b"   class="author_detail">
    																			<a href="http://m.miracleart.cn/member/887227.html" class="author_name">WBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWB</a>
                                    										</div>
    								</div>
                    			</div>
    							<span id="377j5v51b"    class="Articlelist_txts_time">Sep 04, 2024 pm	 04:20 PM</span>
    															<div   id="377j5v51b"   class="Articlelist_txts_infos">
    																			<span id="377j5v51b"    class="Articlelist_txts_infoss on">html</span>
    																			<span id="377j5v51b"    class="Articlelist_txts_infoss ">html5</span>
    																			<span id="377j5v51b"    class="Articlelist_txts_infoss ">HTML Tutorial</span>
    																			<span id="377j5v51b"    class="Articlelist_txts_infoss ">HTML Properties</span>
    																			<span id="377j5v51b"    class="Articlelist_txts_infoss ">HTML tags</span>
    																	</div>
    														
    						</div>
    					</div>
    					<hr />
    					<div   id="377j5v51b"   class="article_main php-article">
    						<div   id="377j5v51b"   class="article-list-left detail-content-wrap content">
    						<ins class="adsbygoogle"
    							style="display:block; text-align:center;"
    							data-ad-layout="in-article"
    							data-ad-format="fluid"
    							data-ad-client="ca-pub-5902227090019525"
    							data-ad-slot="3461856641">
    						</ins>
    						
    
    					<p>The HTML table provides a way to derive or define the data, such as text, images, links, etc., in terms of rows and columns of cells. The HTML tables can be created by using the <table> tag. By default, the table data is left aligned. In this topic, we are going to learn about HTML Table Tags.</p>
    
    
    
    
    
    
    
    
    <p>The table can be created by using <th>, <td>, and <tr> tags.</p>
    <ul>
    <li>The <th> tag defines a heading for the table.</li>
    <li>The <td> tag specifies the table data cells used to make the column.</li>
    <li>The <tr> tag specifies the table rows used to create a row.</li>
    </ul>
    <p>The table data can be structured within <table>content of the table</table> with numerous table elements.</p>
    <p><strong>Syntax</strong></p>
    
    
    <pre class="brush:php;toolbar:false"><table>
    <tr>
    <th>Table Heading 1</th>
    <th>Table Heading 2</th>
    </tr>
    <tr>
    <td>Data Cell 1</td>
    <td>Data Cell 2</td>
    </tr>
    <tr>
    <td>Data Cell 3</td>
    <td>Data Cell 4</td>
    </tr>
    </table></pre>
    <h3 id="Examples-of-HTML-Table-Tags">Examples of?HTML Table Tags</h3>
    <p>Here are the Examples of HTML Table Tags given below</p>
    <h4 id="Basic-Table-Usage">1. Basic Table Usage</h4>
    <p><strong>Example:</strong></p>
    <pre class="brush:php;toolbar:false"><!DOCTYPE html>
    <html>
    <head>
    <title>HTML Table Tag Usage</title>
    </head>
    <body>
    <table border = "1">
    <tr>
    <th>Name</th>
    <th>Country</th>
    </tr>
    <tr>
    <td>Dhoni</td>
    <td>India</td>
    </tr>
    <tr>
    <td>David Miller</td>
    <td>South Africa</td>
    </tr>
    <tr>
    <td>Joe Root</td>
    <td>England</td>
    </tr>
    </table>
    </body></pre>
    <p>Save the code with a .html extension and open it in the browser. It will display the following output:</p>
    <p><img  src="/static/imghw/default1.png" data-src="https://img.php.cn/upload/article/000/000/000/172543802535192.png" class="lazy" alt="HTML Table Tags" ></p>
    <h4 id="Table-Caption">2. Table Caption</h4>
    <p>The table caption can be specified using the <strong><</strong>caption<strong>></strong> tag.</p>
    <p><strong>Example</strong></p>
    <pre class="brush:php;toolbar:false"><!DOCTYPE html>
    <html>
    <head>
    <title>HTML Table Tag Usage</title>
    </head>
    <body>
    <table border = "1">
    <caption>This is Table Caption</caption>
    <tr>
    <th>Name</th>
    <th>Country</th>
    </tr>
    <tr>
    <td>Dhoni</td>
    <td>India</td>
    </tr>
    <tr>
    <td>David Miller</td>
    <td>South Africa</td>
    </tr>
    <tr>
    <td>Joe Root</td>
    <td>England</td>
    </tr>
    </table>
    </body></pre>
    <p>The above code will display the below output:</p>
    <p><img  src="/static/imghw/default1.png" data-src="https://img.php.cn/upload/article/000/000/000/172543802771799.png" class="lazy" alt="HTML Table Tags" ></p>
    <h4 id="Table-Cell-Spacing">3. Table Cell Spacing</h4>
    <p>The table cells’ space can be defined using the cellspacing attribute. The cellspacing attribute specifies the space between table cells.</p>
    <p><strong>Example</strong></p>
    <pre class="brush:php;toolbar:false"><!DOCTYPE html>
    <html>
    <head>
    <title>HTML Table Tag Usage</title>
    </head>
    <body>
    <table border = "1" cellspacing = "5">
    <tr>
    <th>Name</th>
    <th>Country</th>
    </tr>
    <tr>
    <td>Dhoni</td>
    <td>India</td>
    </tr>
    <tr>
    <td>David Miller</td>
    <td>South Africa</td>
    </tr>
    <tr>
    <td>Joe Root</td>
    <td>England</td>
    </tr>
    </table>
    </body></pre>
    <p>The above code will display the following output:</p>
    <p><img  src="/static/imghw/default1.png" data-src="https://img.php.cn/upload/article/000/000/000/172543802939006.png" class="lazy" alt="HTML Table Tags" ></p>
    <h4 id="Table-Cell-Padding">4. Table Cell Padding</h4>
    <p>The table cells’ padding can be defined using the cellpadding attribute. The cellpadding attribute distance between the table cell border and data.</p>
    <p><strong>Example</strong></p>
    <pre class="brush:php;toolbar:false"><!DOCTYPE html>
    <html>
    <head>
    <title>HTML Table Tag Usage</title>
    </head>
    <body>
    <table border = "1" cellpadding = "5">
    <tr>
    <th>Name</th>
    <th>Country</th>
    </tr>
    <tr>
    <td>Dhoni</td>
    <td>India</td>
    </tr>
    <tr>
    <td>David Miller</td>
    <td>South Africa</td>
    </tr>
    <tr>
    <td>Joe Root</td>
    <td>England</td>
    </tr>
    </table>
    </body></pre>
    <p>The above code will display the below output:</p>
    <p><img  src="/static/imghw/default1.png" data-src="https://img.php.cn/upload/article/000/000/000/172543803182003.png" class="lazy" alt="HTML Table Tags" ></p>
    <h4 id="Column-and-Row-Span-Attributes">5. Column and Row Span Attributes</h4>
    <p>You can merge two or more table rows into a single row by using the rowspan attribute, and you can merge table columns into a single column by using the colspan attribute.</p>
    <p><strong>Example</strong></p>
    <pre class="brush:php;toolbar:false"><!DOCTYPE html>
    <html>
    <head>
    <title>HTML Table Tag Usage</title>
    </head>
    <body>
    <table border = "1">
    <tr>
    <th>Column One</th>
    <th>Column Two</th>
    <th>Column Three</th>
    </tr>
    <tr>
    <td rowspan = "2">Row One</td>
    <td>Row Two</td>
    <td>Row Three</td>
    </tr>
    <tr>
    <td>Row Four</td>
    <td>Row Five</td>
    </tr>
    <tr>
    <td colspan = "3">Row Six</td>
    </tr>
    </table>
    </body></pre>
    <p>The code will display the following output:</p>
    <p><img  src="/static/imghw/default1.png" data-src="https://img.php.cn/upload/article/000/000/000/172543803423687.png" class="lazy" alt="HTML Table Tags" ></p>
    <h4 id="Background-for-Table">6. Background for Table</h4>
    <p>You can create the background of the table by using the bgcolor attribute. The table cell border can be specified by using the border-color attribute.</p>
    <p><strong>Example</strong></p>
    <pre class="brush:php;toolbar:false"><!DOCTYPE html>
    <html>
    <head>
    <title>HTML Table Tag Usage</title>
    </head>
    <body>
    <table border = "1" bordercolor = "red" bgcolor = "lightblue">
    <tr>
    <th>Name</th>
    <th>Country</th>
    </tr>
    <tr>
    <td>Dhoni</td>
    <td>India</td>
    </tr>
    <tr>
    <td>David Miller</td>
    <td>South Africa</td>
    </tr>
    <tr>
    <td>Joe Root</td>
    <td>England</td>
    </tr>
    </table>
    </body></pre>
    <p>Execute the above code, and it will display the below output:</p>
    <p><img  src="/static/imghw/default1.png" data-src="https://img.php.cn/upload/article/000/000/000/172543803799982.png" class="lazy" alt="HTML Table Tags" ></p>
    <h4 id="Height-and-Width-of-the-Table">7. Height and Width of the Table</h4>
    <p>You can set the height and width of the table by using the width and height attributes.</p>
    <p><strong>Example</strong></p>
    <pre class="brush:php;toolbar:false"><!DOCTYPE html>
    <html>
    <head>
    <title>HTML Table Tag Usage</title>
    </head>
    <body>
    <table border = "1" width = "500" height = "250" bgcolor = "lightblue">
    <tr>
    <th>Name</th>
    <th>Country</th>
    </tr>
    <tr>
    <td>Dhoni</td>
    <td>India</td>
    </tr>
    <tr>
    <td>David Miller</td>
    <td>South Africa</td>
    </tr>
    <tr>
    <td>Joe Root</td>
    <td>England</td>
    </tr>
    </table>
    </body></pre>
    <p>The above code will display the following output:</p>
    <p><img  src="/static/imghw/default1.png" data-src="https://img.php.cn/upload/article/000/000/000/172543804021296.png" class="lazy" alt="HTML Table Tags" ></p>
    
    
    <h4 id="Styling-Table-Cells">8. Styling Table Cells</h4>
    <p><strong>Example</strong></p>
    <pre class="brush:php;toolbar:false"><!DOCTYPE html>
    <html>
    <head>
    <title>HTML Table Tag Usage</title>
    </head>
    <style>
    table, th, td {
    border: 1px solid red;
    border-collapse: collapse;
    }
    th, td {
    padding: 15px;
    }
    table#mytable tr:nth-child(even) {
    background-color: #FAD7A0;
    }
    table#mytable tr:nth-child(odd) {
    background-color: #E67E22;
    }
    table#mytable th {
    color: white;
    background-color: teal;
    }
    </style>
    <body>
    <table id="mytable" border = "1" width = "450" height = "350">
    <tr>
    <th>Name</th>
    <th>Country</th>
    </tr>
    <tr>
    <td>Dhoni</td>
    <td>India</td>
    </tr>
    <tr>
    <td>David Miller</td>
    <td>South Africa</td>
    </tr>
    <tr>
    <td>Joe Root</td>
    <td>England</td>
    </tr>
    </table>
    </body></pre>
    <p>Execute the above code; you will have the below output:</p>
    <p><img  src="/static/imghw/default1.png" data-src="https://img.php.cn/upload/article/000/000/000/172543804166022.png" class="lazy" alt="HTML Table Tags" ></p>
    <h4 id="Nested-Tables">8. Nested Tables</h4>
    <p>You can use one table inside another table is called a nested table.</p>
    <p>Let us consider the below example for the nested table:</p>
    <p><strong>Example</strong></p>
    <pre class="brush:php;toolbar:false"><!DOCTYPE html>
    <html>
    <head>
    <title>HTML Table Tag Usage</title>
    </head>
    <body>
    <table border = "1" width = "500" height = "250">
    <tr>
    <td>
    <table border = "1" width = "500" height = "250" bgcolor = "lightblue">
    <tr>
    <th>Name</th>
    <th>Country</th>
    </tr>
    <tr>
    <td>Dhoni</td>
    <td>India</td>
    </tr>
    <tr>
    <td>David Miller</td>
    <td>South Africa</td>
    </tr>
    <tr>
    <td>Joe Root</td>
    <td>England</td>
    </tr>
    </table>
    </td>
    </tr>
    </table>
    </body></pre>
    <p>The above code will display the following output:</p>
    <p><img  src="/static/imghw/default1.png" data-src="https://img.php.cn/upload/article/000/000/000/172543804437421.png" class="lazy" alt="HTML Table Tags" ></p>
    <h3 id="Attributes-of-Table">Attributes of Table</h3>
    <p>Below are the attributes as follows:</p>
    <ul>
    <li>
    <strong>align:</strong> This attribute provides content alignment inside an element.</li>
    <li>
    <strong>bgcolor:</strong> This attribute specifies the background color for the table.</li>
    <li>
    <strong>border:</strong> This attribute specifies the border for the table cells.</li>
    <li>
    <strong>cellpadding:</strong> This attribute displays the padding between table cells and table content.</li>
    <li>
    <strong>cellspacing:</strong> This attribute indicates the space between table cells.</li>
    <li>
    <strong>frame:</strong> It specifies which parts of the outside borders are visible.</li>
    <li>
    <strong>rules:</strong> This specifies which parts of the inside borders are visible.</li>
    <li>
    <strong>sortable:</strong> This attribute informs that the table is sortable.</li>
    <li>
    <strong>summary:</strong> It provides what type of table content is present.</li>
    <li>
    <strong>width:</strong> This attribute tells the width of the table.</li>
    <li>
    <strong>height:</strong> This attribute specifies the height of the table.</li>
    </ul>
    <h3 id="Conclusion">Conclusion</h3>
    <p>So far, we have studied the different types of table tags in HTML. The examples have shown the usage of styling the table, nesting one table within another table, setting the height and width of the table, adding spacing and padding for the table cells, applying background color for the table, and many more.</p><p>The above is the detailed content of HTML Table Tags. For more information, please follow other related articles on the PHP Chinese website!</p>
    
    
    						</div>
    					</div>
    					<div   id="377j5v51b"   class="wzconShengming_sp">
    						<div   id="377j5v51b"   class="bzsmdiv_sp">Statement of this Website</div>
    						<div>The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn</div>
    					</div>
    				</div>
    
    				<ins class="adsbygoogle"
         style="display:block"
         data-ad-format="autorelaxed"
         data-ad-client="ca-pub-5902227090019525"
         data-ad-slot="2507867629"></ins>
    
    
    
    				<div   id="377j5v51b"   class="AI_ToolDetails_main4sR">
    
    
    				<ins class="adsbygoogle"
            style="display:block"
            data-ad-client="ca-pub-5902227090019525"
            data-ad-slot="3653428331"
            data-ad-format="auto"
            data-full-width-responsive="true"></ins>
        
    
    
    					<!-- <div   id="377j5v51b"   class="phpgenera_Details_mainR4">
    						<div   id="377j5v51b"   class="phpmain1_4R_readrank">
    							<div   id="377j5v51b"   class="phpmain1_4R_readrank_top">
    								<img onerror="this.onerror=''; this.src='/static/imghw/default1.png'"
    									onerror="this.onerror=''; this.src='/static/imghw/default1.png'"
    									src="/static/imghw/hotarticle2.png" alt="" />
    								<h2>Hot Article</h2>
    							</div>
    							<div   id="377j5v51b"   class="phpgenera_Details_mainR4_bottom">
    															<div   id="377j5v51b"   class="phpgenera_Details_mainR4_bottoms">
    									<a href="http://m.miracleart.cn/faq/1796821119.html" title="Guide: Stellar Blade Save File Location/Save File Lost/Not Saving" class="phpgenera_Details_mainR4_bottom_title">Guide: Stellar Blade Save File Location/Save File Lost/Not Saving</a>
    									<div   id="377j5v51b"   class="phpgenera_Details_mainR4_bottoms_info">
    										<span>1 months ago</span>
    										<span>By DDD</span>
    									</div>
    								</div>
    															<div   id="377j5v51b"   class="phpgenera_Details_mainR4_bottoms">
    									<a href="http://m.miracleart.cn/faq/1796828723.html" title="Agnes Tachyon Build Guide | A Pretty Derby Musume" class="phpgenera_Details_mainR4_bottom_title">Agnes Tachyon Build Guide | A Pretty Derby Musume</a>
    									<div   id="377j5v51b"   class="phpgenera_Details_mainR4_bottoms_info">
    										<span>2 weeks ago</span>
    										<span>By Jack chen</span>
    									</div>
    								</div>
    															<div   id="377j5v51b"   class="phpgenera_Details_mainR4_bottoms">
    									<a href="http://m.miracleart.cn/faq/1796827210.html" title="Oguri Cap Build Guide | A Pretty Derby Musume" class="phpgenera_Details_mainR4_bottom_title">Oguri Cap Build Guide | A Pretty Derby Musume</a>
    									<div   id="377j5v51b"   class="phpgenera_Details_mainR4_bottoms_info">
    										<span>2 weeks ago</span>
    										<span>By Jack chen</span>
    									</div>
    								</div>
    															<div   id="377j5v51b"   class="phpgenera_Details_mainR4_bottoms">
    									<a href="http://m.miracleart.cn/faq/1796821436.html" title="Dune: Awakening - Advanced Planetologist Quest Walkthrough" class="phpgenera_Details_mainR4_bottom_title">Dune: Awakening - Advanced Planetologist Quest Walkthrough</a>
    									<div   id="377j5v51b"   class="phpgenera_Details_mainR4_bottoms_info">
    										<span>4 weeks ago</span>
    										<span>By Jack chen</span>
    									</div>
    								</div>
    															<div   id="377j5v51b"   class="phpgenera_Details_mainR4_bottoms">
    									<a href="http://m.miracleart.cn/faq/1796821278.html" title="Date Everything: Dirk And Harper Relationship Guide" class="phpgenera_Details_mainR4_bottom_title">Date Everything: Dirk And Harper Relationship Guide</a>
    									<div   id="377j5v51b"   class="phpgenera_Details_mainR4_bottoms_info">
    										<span>4 weeks ago</span>
    										<span>By Jack chen</span>
    									</div>
    								</div>
    														</div>
    							<div   id="377j5v51b"   class="phpgenera_Details_mainR3_more">
    								<a href="http://m.miracleart.cn/article.html">Show More</a>
    							</div>
    						</div>
    					</div> -->
    
    
    											<div   id="377j5v51b"   class="phpgenera_Details_mainR3">
    							<div   id="377j5v51b"   class="phpmain1_4R_readrank">
    								<div   id="377j5v51b"   class="phpmain1_4R_readrank_top">
    									<img onerror="this.onerror=''; this.src='/static/imghw/default1.png'"
    										onerror="this.onerror=''; this.src='/static/imghw/default1.png'"
    										src="/static/imghw/hottools2.png" alt="" />
    									<h2>Hot AI Tools</h2>
    								</div>
    								<div   id="377j5v51b"   class="phpgenera_Details_mainR3_bottom">
    																		<div   id="377j5v51b"   class="phpmain_tab2_mids_top">
    											<a href="http://m.miracleart.cn/ai/undress-ai-tool" title="Undress AI Tool" class="phpmain_tab2_mids_top_img">
    												<img onerror="this.onerror=''; this.src='/static/imghw/default1.png'"
    													onerror="this.onerror=''; this.src='/static/imghw/default1.png'"
    													class="lazy"  data-src="https://img.php.cn/upload/ai_manual/001/246/273/173410641626608.jpg?x-oss-process=image/resize,m_fill,h_50,w_50" src="/static/imghw/default1.png" alt="Undress AI Tool" />
    											</a>
    											<div   id="377j5v51b"   class="phpmain_tab2_mids_info">
    												<a href="http://m.miracleart.cn/ai/undress-ai-tool" title="Undress AI Tool" class="phpmain_tab2_mids_title">
    													<h3>Undress AI Tool</h3>
    												</a>
    												<p>Undress images for free</p>
    											</div>
    										</div>
    																		<div   id="377j5v51b"   class="phpmain_tab2_mids_top">
    											<a href="http://m.miracleart.cn/ai/undresserai-undress" title="Undresser.AI Undress" class="phpmain_tab2_mids_top_img">
    												<img onerror="this.onerror=''; this.src='/static/imghw/default1.png'"
    													onerror="this.onerror=''; this.src='/static/imghw/default1.png'"
    													class="lazy"  data-src="https://img.php.cn/upload/ai_manual/001/246/273/173411540686492.jpg?x-oss-process=image/resize,m_fill,h_50,w_50" src="/static/imghw/default1.png" alt="Undresser.AI Undress" />
    											</a>
    											<div   id="377j5v51b"   class="phpmain_tab2_mids_info">
    												<a href="http://m.miracleart.cn/ai/undresserai-undress" title="Undresser.AI Undress" class="phpmain_tab2_mids_title">
    													<h3>Undresser.AI Undress</h3>
    												</a>
    												<p>AI-powered app for creating realistic nude photos</p>
    											</div>
    										</div>
    																		<div   id="377j5v51b"   class="phpmain_tab2_mids_top">
    											<a href="http://m.miracleart.cn/ai/ai-clothes-remover" title="AI Clothes Remover" class="phpmain_tab2_mids_top_img">
    												<img onerror="this.onerror=''; this.src='/static/imghw/default1.png'"
    													onerror="this.onerror=''; this.src='/static/imghw/default1.png'"
    													class="lazy"  data-src="https://img.php.cn/upload/ai_manual/001/246/273/173411552797167.jpg?x-oss-process=image/resize,m_fill,h_50,w_50" src="/static/imghw/default1.png" alt="AI Clothes Remover" />
    											</a>
    											<div   id="377j5v51b"   class="phpmain_tab2_mids_info">
    												<a href="http://m.miracleart.cn/ai/ai-clothes-remover" title="AI Clothes Remover" class="phpmain_tab2_mids_title">
    													<h3>AI Clothes Remover</h3>
    												</a>
    												<p>Online AI tool for removing clothes from photos.</p>
    											</div>
    										</div>
    																		<div   id="377j5v51b"   class="phpmain_tab2_mids_top">
    											<a href="http://m.miracleart.cn/ai/clothoffio" title="Clothoff.io" class="phpmain_tab2_mids_top_img">
    												<img onerror="this.onerror=''; this.src='/static/imghw/default1.png'"
    													onerror="this.onerror=''; this.src='/static/imghw/default1.png'"
    													class="lazy"  data-src="https://img.php.cn/upload/ai_manual/001/246/273/173411529149311.jpg?x-oss-process=image/resize,m_fill,h_50,w_50" src="/static/imghw/default1.png" alt="Clothoff.io" />
    											</a>
    											<div   id="377j5v51b"   class="phpmain_tab2_mids_info">
    												<a href="http://m.miracleart.cn/ai/clothoffio" title="Clothoff.io" class="phpmain_tab2_mids_title">
    													<h3>Clothoff.io</h3>
    												</a>
    												<p>AI clothes remover</p>
    											</div>
    										</div>
    																		<div   id="377j5v51b"   class="phpmain_tab2_mids_top">
    											<a href="http://m.miracleart.cn/ai/video-swap" title="Video Face Swap" class="phpmain_tab2_mids_top_img">
    												<img onerror="this.onerror=''; this.src='/static/imghw/default1.png'"
    													onerror="this.onerror=''; this.src='/static/imghw/default1.png'"
    													class="lazy"  data-src="https://img.php.cn/upload/ai_manual/001/246/273/173414504068133.jpg?x-oss-process=image/resize,m_fill,h_50,w_50" src="/static/imghw/default1.png" alt="Video Face Swap" />
    											</a>
    											<div   id="377j5v51b"   class="phpmain_tab2_mids_info">
    												<a href="http://m.miracleart.cn/ai/video-swap" title="Video Face Swap" class="phpmain_tab2_mids_title">
    													<h3>Video Face Swap</h3>
    												</a>
    												<p>Swap faces in any video effortlessly with our completely free AI face swap tool!</p>
    											</div>
    										</div>
    																</div>
    								<div   id="377j5v51b"   class="phpgenera_Details_mainR3_more">
    									<a href="http://m.miracleart.cn/ai">Show More</a>
    								</div>
    							</div>
    						</div>
    					
    
    
    					<div   id="377j5v51b"   class="phpgenera_Details_mainR4">
    						<div   id="377j5v51b"   class="phpmain1_4R_readrank">
    							<div   id="377j5v51b"   class="phpmain1_4R_readrank_top">
    								<img onerror="this.onerror=''; this.src='/static/imghw/default1.png'"
    									onerror="this.onerror=''; this.src='/static/imghw/default1.png'"
    									src="/static/imghw/hotarticle2.png" alt="" />
    								<h2>Hot Article</h2>
    							</div>
    							<div   id="377j5v51b"   class="phpgenera_Details_mainR4_bottom">
    															<div   id="377j5v51b"   class="phpgenera_Details_mainR4_bottoms">
    									<a href="http://m.miracleart.cn/faq/1796821119.html" title="Guide: Stellar Blade Save File Location/Save File Lost/Not Saving" class="phpgenera_Details_mainR4_bottom_title">Guide: Stellar Blade Save File Location/Save File Lost/Not Saving</a>
    									<div   id="377j5v51b"   class="phpgenera_Details_mainR4_bottoms_info">
    										<span>1 months ago</span>
    										<span>By DDD</span>
    									</div>
    								</div>
    															<div   id="377j5v51b"   class="phpgenera_Details_mainR4_bottoms">
    									<a href="http://m.miracleart.cn/faq/1796828723.html" title="Agnes Tachyon Build Guide | A Pretty Derby Musume" class="phpgenera_Details_mainR4_bottom_title">Agnes Tachyon Build Guide | A Pretty Derby Musume</a>
    									<div   id="377j5v51b"   class="phpgenera_Details_mainR4_bottoms_info">
    										<span>2 weeks ago</span>
    										<span>By Jack chen</span>
    									</div>
    								</div>
    															<div   id="377j5v51b"   class="phpgenera_Details_mainR4_bottoms">
    									<a href="http://m.miracleart.cn/faq/1796827210.html" title="Oguri Cap Build Guide | A Pretty Derby Musume" class="phpgenera_Details_mainR4_bottom_title">Oguri Cap Build Guide | A Pretty Derby Musume</a>
    									<div   id="377j5v51b"   class="phpgenera_Details_mainR4_bottoms_info">
    										<span>2 weeks ago</span>
    										<span>By Jack chen</span>
    									</div>
    								</div>
    															<div   id="377j5v51b"   class="phpgenera_Details_mainR4_bottoms">
    									<a href="http://m.miracleart.cn/faq/1796821436.html" title="Dune: Awakening - Advanced Planetologist Quest Walkthrough" class="phpgenera_Details_mainR4_bottom_title">Dune: Awakening - Advanced Planetologist Quest Walkthrough</a>
    									<div   id="377j5v51b"   class="phpgenera_Details_mainR4_bottoms_info">
    										<span>4 weeks ago</span>
    										<span>By Jack chen</span>
    									</div>
    								</div>
    															<div   id="377j5v51b"   class="phpgenera_Details_mainR4_bottoms">
    									<a href="http://m.miracleart.cn/faq/1796821278.html" title="Date Everything: Dirk And Harper Relationship Guide" class="phpgenera_Details_mainR4_bottom_title">Date Everything: Dirk And Harper Relationship Guide</a>
    									<div   id="377j5v51b"   class="phpgenera_Details_mainR4_bottoms_info">
    										<span>4 weeks ago</span>
    										<span>By Jack chen</span>
    									</div>
    								</div>
    														</div>
    							<div   id="377j5v51b"   class="phpgenera_Details_mainR3_more">
    								<a href="http://m.miracleart.cn/article.html">Show More</a>
    							</div>
    						</div>
    					</div>
    
    
    											<div   id="377j5v51b"   class="phpgenera_Details_mainR3">
    							<div   id="377j5v51b"   class="phpmain1_4R_readrank">
    								<div   id="377j5v51b"   class="phpmain1_4R_readrank_top">
    									<img onerror="this.onerror=''; this.src='/static/imghw/default1.png'"
    										onerror="this.onerror=''; this.src='/static/imghw/default1.png'"
    										src="/static/imghw/hottools2.png" alt="" />
    									<h2>Hot Tools</h2>
    								</div>
    								<div   id="377j5v51b"   class="phpgenera_Details_mainR3_bottom">
    																		<div   id="377j5v51b"   class="phpmain_tab2_mids_top">
    											<a href="http://m.miracleart.cn/toolset/development-tools/92" title="Notepad++7.3.1" class="phpmain_tab2_mids_top_img">
    												<img onerror="this.onerror=''; this.src='/static/imghw/default1.png'"
    													onerror="this.onerror=''; this.src='/static/imghw/default1.png'"
    													class="lazy"  data-src="https://img.php.cn/upload/manual/000/000/001/58ab96f0f39f7357.jpg?x-oss-process=image/resize,m_fill,h_50,w_72" src="/static/imghw/default1.png" alt="Notepad++7.3.1" />
    											</a>
    											<div   id="377j5v51b"   class="phpmain_tab2_mids_info">
    												<a href="http://m.miracleart.cn/toolset/development-tools/92" title="Notepad++7.3.1" class="phpmain_tab2_mids_title">
    													<h3>Notepad++7.3.1</h3>
    												</a>
    												<p>Easy-to-use and free code editor</p>
    											</div>
    										</div>
    																			<div   id="377j5v51b"   class="phpmain_tab2_mids_top">
    											<a href="http://m.miracleart.cn/toolset/development-tools/93" title="SublimeText3 Chinese version" class="phpmain_tab2_mids_top_img">
    												<img onerror="this.onerror=''; this.src='/static/imghw/default1.png'"
    													onerror="this.onerror=''; this.src='/static/imghw/default1.png'"
    													class="lazy"  data-src="https://img.php.cn/upload/manual/000/000/001/58ab97a3baad9677.jpg?x-oss-process=image/resize,m_fill,h_50,w_72" src="/static/imghw/default1.png" alt="SublimeText3 Chinese version" />
    											</a>
    											<div   id="377j5v51b"   class="phpmain_tab2_mids_info">
    												<a href="http://m.miracleart.cn/toolset/development-tools/93" title="SublimeText3 Chinese version" class="phpmain_tab2_mids_title">
    													<h3>SublimeText3 Chinese version</h3>
    												</a>
    												<p>Chinese version, very easy to use</p>
    											</div>
    										</div>
    																			<div   id="377j5v51b"   class="phpmain_tab2_mids_top">
    											<a href="http://m.miracleart.cn/toolset/development-tools/121" title="Zend Studio 13.0.1" class="phpmain_tab2_mids_top_img">
    												<img onerror="this.onerror=''; this.src='/static/imghw/default1.png'"
    													onerror="this.onerror=''; this.src='/static/imghw/default1.png'"
    													class="lazy"  data-src="https://img.php.cn/upload/manual/000/000/001/58ab97ecd1ab2670.jpg?x-oss-process=image/resize,m_fill,h_50,w_72" src="/static/imghw/default1.png" alt="Zend Studio 13.0.1" />
    											</a>
    											<div   id="377j5v51b"   class="phpmain_tab2_mids_info">
    												<a href="http://m.miracleart.cn/toolset/development-tools/121" title="Zend Studio 13.0.1" class="phpmain_tab2_mids_title">
    													<h3>Zend Studio 13.0.1</h3>
    												</a>
    												<p>Powerful PHP integrated development environment</p>
    											</div>
    										</div>
    																			<div   id="377j5v51b"   class="phpmain_tab2_mids_top">
    											<a href="http://m.miracleart.cn/toolset/development-tools/469" title="Dreamweaver CS6" class="phpmain_tab2_mids_top_img">
    												<img onerror="this.onerror=''; this.src='/static/imghw/default1.png'"
    													onerror="this.onerror=''; this.src='/static/imghw/default1.png'"
    													class="lazy"  data-src="https://img.php.cn/upload/manual/000/000/001/58d0e0fc74683535.jpg?x-oss-process=image/resize,m_fill,h_50,w_72" src="/static/imghw/default1.png" alt="Dreamweaver CS6" />
    											</a>
    											<div   id="377j5v51b"   class="phpmain_tab2_mids_info">
    												<a href="http://m.miracleart.cn/toolset/development-tools/469" title="Dreamweaver CS6" class="phpmain_tab2_mids_title">
    													<h3>Dreamweaver CS6</h3>
    												</a>
    												<p>Visual web development tools</p>
    											</div>
    										</div>
    																			<div   id="377j5v51b"   class="phpmain_tab2_mids_top">
    											<a href="http://m.miracleart.cn/toolset/development-tools/500" title="SublimeText3 Mac version" class="phpmain_tab2_mids_top_img">
    												<img onerror="this.onerror=''; this.src='/static/imghw/default1.png'"
    													onerror="this.onerror=''; this.src='/static/imghw/default1.png'"
    													class="lazy"  data-src="https://img.php.cn/upload/manual/000/000/001/58d34035e2757995.png?x-oss-process=image/resize,m_fill,h_50,w_72" src="/static/imghw/default1.png" alt="SublimeText3 Mac version" />
    											</a>
    											<div   id="377j5v51b"   class="phpmain_tab2_mids_info">
    												<a href="http://m.miracleart.cn/toolset/development-tools/500" title="SublimeText3 Mac version" class="phpmain_tab2_mids_title">
    													<h3>SublimeText3 Mac version</h3>
    												</a>
    												<p>God-level code editing software (SublimeText3)</p>
    											</div>
    										</div>
    																	</div>
    								<div   id="377j5v51b"   class="phpgenera_Details_mainR3_more">
    									<a href="http://m.miracleart.cn/ai">Show More</a>
    								</div>
    							</div>
    						</div>
    										
    
    					
    					<div   id="377j5v51b"   class="phpgenera_Details_mainR4">
    						<div   id="377j5v51b"   class="phpmain1_4R_readrank">
    							<div   id="377j5v51b"   class="phpmain1_4R_readrank_top">
    								<img onerror="this.onerror=''; this.src='/static/imghw/default1.png'"
    									onerror="this.onerror=''; this.src='/static/imghw/default1.png'"
    									src="/static/imghw/hotarticle2.png" alt="" />
    								<h2>Hot Topics</h2>
    							</div>
    							<div   id="377j5v51b"   class="phpgenera_Details_mainR4_bottom">
    															<div   id="377j5v51b"   class="phpgenera_Details_mainR4_bottoms">
    									<a href="http://m.miracleart.cn/faq/gmailyxdlrkzn" title="Where is the login entrance for gmail email?" class="phpgenera_Details_mainR4_bottom_title">Where is the login entrance for gmail email?</a>
    									<div   id="377j5v51b"   class="phpgenera_Details_mainR4_bottoms_info">
    										<div   id="377j5v51b"   class="phpgenera_Details_mainR4_bottoms_infos">
    											<img src="/static/imghw/eyess.png" alt="" />
    											<span>8639</span>
    										</div>
    										<div   id="377j5v51b"   class="phpgenera_Details_mainR4_bottoms_infos">
    											<img src="/static/imghw/tiezi.png" alt="" />
    											<span>17</span>
    										</div>
    									</div>
    								</div>
    															<div   id="377j5v51b"   class="phpgenera_Details_mainR4_bottoms">
    									<a href="http://m.miracleart.cn/faq/java-tutorial" title="Java Tutorial" class="phpgenera_Details_mainR4_bottom_title">Java Tutorial</a>
    									<div   id="377j5v51b"   class="phpgenera_Details_mainR4_bottoms_info">
    										<div   id="377j5v51b"   class="phpgenera_Details_mainR4_bottoms_infos">
    											<img src="/static/imghw/eyess.png" alt="" />
    											<span>1785</span>
    										</div>
    										<div   id="377j5v51b"   class="phpgenera_Details_mainR4_bottoms_infos">
    											<img src="/static/imghw/tiezi.png" alt="" />
    											<span>16</span>
    										</div>
    									</div>
    								</div>
    															<div   id="377j5v51b"   class="phpgenera_Details_mainR4_bottoms">
    									<a href="http://m.miracleart.cn/faq/cakephp-tutor" title="CakePHP Tutorial" class="phpgenera_Details_mainR4_bottom_title">CakePHP Tutorial</a>
    									<div   id="377j5v51b"   class="phpgenera_Details_mainR4_bottoms_info">
    										<div   id="377j5v51b"   class="phpgenera_Details_mainR4_bottoms_infos">
    											<img src="/static/imghw/eyess.png" alt="" />
    											<span>1729</span>
    										</div>
    										<div   id="377j5v51b"   class="phpgenera_Details_mainR4_bottoms_infos">
    											<img src="/static/imghw/tiezi.png" alt="" />
    											<span>56</span>
    										</div>
    									</div>
    								</div>
    															<div   id="377j5v51b"   class="phpgenera_Details_mainR4_bottoms">
    									<a href="http://m.miracleart.cn/faq/laravel-tutori" title="Laravel Tutorial" class="phpgenera_Details_mainR4_bottom_title">Laravel Tutorial</a>
    									<div   id="377j5v51b"   class="phpgenera_Details_mainR4_bottoms_info">
    										<div   id="377j5v51b"   class="phpgenera_Details_mainR4_bottoms_infos">
    											<img src="/static/imghw/eyess.png" alt="" />
    											<span>1581</span>
    										</div>
    										<div   id="377j5v51b"   class="phpgenera_Details_mainR4_bottoms_infos">
    											<img src="/static/imghw/tiezi.png" alt="" />
    											<span>29</span>
    										</div>
    									</div>
    								</div>
    															<div   id="377j5v51b"   class="phpgenera_Details_mainR4_bottoms">
    									<a href="http://m.miracleart.cn/faq/php-tutorial" title="PHP Tutorial" class="phpgenera_Details_mainR4_bottom_title">PHP Tutorial</a>
    									<div   id="377j5v51b"   class="phpgenera_Details_mainR4_bottoms_info">
    										<div   id="377j5v51b"   class="phpgenera_Details_mainR4_bottoms_infos">
    											<img src="/static/imghw/eyess.png" alt="" />
    											<span>1445</span>
    										</div>
    										<div   id="377j5v51b"   class="phpgenera_Details_mainR4_bottoms_infos">
    											<img src="/static/imghw/tiezi.png" alt="" />
    											<span>31</span>
    										</div>
    									</div>
    								</div>
    														</div>
    							<div   id="377j5v51b"   class="phpgenera_Details_mainR3_more">
    								<a href="http://m.miracleart.cn/faq/zt">Show More</a>
    							</div>
    						</div>
    					</div>
    				</div>
    			</div>
    							<div   id="377j5v51b"   class="Article_Details_main2">
    					<div   id="377j5v51b"   class="phpgenera_Details_mainL4">
    						<div   id="377j5v51b"   class="phpmain1_2_top">
    							<a href="javascript:void(0);" class="phpmain1_2_top_title">Related knowledge<img
    									src="/static/imghw/index2_title2.png" alt="" /></a>
    						</div>
    						<div   id="377j5v51b"   class="phpgenera_Details_mainL4_info">
    
    													<div   id="377j5v51b"   class="phphistorical_Version2_mids">
    								<a href="http://m.miracleart.cn/faq/1796829177.html" title="What are the essential HTML elements for structuring a webpage?" class="phphistorical_Version2_mids_img">
    									<img onerror="this.onerror=''; this.src='/static/imghw/default1.png'"
    										src="/static/imghw/default1.png" class="lazy"  data-src="https://img.php.cn/upload/article/001/253/068/175148129241939.jpg?x-oss-process=image/resize,m_fill,h_207,w_330" alt="What are the essential HTML elements for structuring a webpage?" />
    								</a>
    								<a href="http://m.miracleart.cn/faq/1796829177.html" title="What are the essential HTML elements for structuring a webpage?" class="phphistorical_Version2_mids_title">What are the essential HTML elements for structuring a webpage?</a>
    								<span id="377j5v51b"    class="Articlelist_txts_time">Jul 03, 2025 am	 02:34 AM</span>
    								<p class="Articlelist_txts_p">The web page structure needs to be supported by core HTML elements. 1. The overall structure of the page is composed of , , which is the root element, which stores meta information and displays the content; 2. The content organization relies on title (-), paragraph () and block tags (such as ,) to improve organizational structure and SEO; 3. Navigation is implemented through and implemented, commonly used organizations are linked and supplemented with aria-current attribute to enhance accessibility; 4. Form interaction involves , , and , to ensure the complete user input and submission functions. Proper use of these elements can improve page clarity, maintenance and search engine optimization.</p>
    							</div>
    														<div   id="377j5v51b"   class="phphistorical_Version2_mids">
    								<a href="http://m.miracleart.cn/faq/1796829157.html" title="Handling reconnections and errors with HTML5 Server-Sent Events." class="phphistorical_Version2_mids_img">
    									<img onerror="this.onerror=''; this.src='/static/imghw/default1.png'"
    										src="/static/imghw/default1.png" class="lazy"  data-src="https://img.php.cn/upload/article/001/253/068/175148089165625.jpg?x-oss-process=image/resize,m_fill,h_207,w_330" alt="Handling reconnections and errors with HTML5 Server-Sent Events." />
    								</a>
    								<a href="http://m.miracleart.cn/faq/1796829157.html" title="Handling reconnections and errors with HTML5 Server-Sent Events." class="phphistorical_Version2_mids_title">Handling reconnections and errors with HTML5 Server-Sent Events.</a>
    								<span id="377j5v51b"    class="Articlelist_txts_time">Jul 03, 2025 am	 02:28 AM</span>
    								<p class="Articlelist_txts_p">When using HTML5SSE, the methods to deal with reconnection and errors include: 1. Understand the default reconnection mechanism. EventSource retrys 3 seconds after the connection is interrupted by default. You can customize the interval through the retry field; 2. Listen to the error event to deal with connection failure or parsing errors, distinguish error types and execute corresponding logic, such as network problems relying on automatic reconnection, server errors manually delay reconnection, and authentication failure refresh token; 3. Actively control the reconnection logic, such as manually closing and rebuilding the connection, setting the maximum number of retry times, combining navigator.onLine to judge network status to optimize the retry strategy. These measures can improve application stability and user experience.</p>
    							</div>
    														<div   id="377j5v51b"   class="phphistorical_Version2_mids">
    								<a href="http://m.miracleart.cn/faq/1796829178.html" title="Declaring the correct HTML5 doctype for modern pages." class="phphistorical_Version2_mids_img">
    									<img onerror="this.onerror=''; this.src='/static/imghw/default1.png'"
    										src="/static/imghw/default1.png" class="lazy"  data-src="https://img.php.cn/upload/article/001/253/068/175148132111973.jpg?x-oss-process=image/resize,m_fill,h_207,w_330" alt="Declaring the correct HTML5 doctype for modern pages." />
    								</a>
    								<a href="http://m.miracleart.cn/faq/1796829178.html" title="Declaring the correct HTML5 doctype for modern pages." class="phphistorical_Version2_mids_title">Declaring the correct HTML5 doctype for modern pages.</a>
    								<span id="377j5v51b"    class="Articlelist_txts_time">Jul 03, 2025 am	 02:35 AM</span>
    								<p class="Articlelist_txts_p">Doctype is a statement that tells the browser which HTML standard to use to parse the page. Modern web pages only need to be written at the beginning of the HTML file. Its function is to ensure that the browser renders the page in standard mode rather than weird mode, and must be located on the first line, with no spaces or comments in front of it; there is only one correct way to write it, and it is not recommended to use old versions or other variants; other such as charset, viewport, etc. should be placed in part.</p>
    							</div>
    														<div   id="377j5v51b"   class="phphistorical_Version2_mids">
    								<a href="http://m.miracleart.cn/faq/1796829167.html" title="Implementing client-side form validation using HTML attributes." class="phphistorical_Version2_mids_img">
    									<img onerror="this.onerror=''; this.src='/static/imghw/default1.png'"
    										src="/static/imghw/default1.png" class="lazy"  data-src="https://img.php.cn/upload/article/001/253/068/175148109151878.jpg?x-oss-process=image/resize,m_fill,h_207,w_330" alt="Implementing client-side form validation using HTML attributes." />
    								</a>
    								<a href="http://m.miracleart.cn/faq/1796829167.html" title="Implementing client-side form validation using HTML attributes." class="phphistorical_Version2_mids_title">Implementing client-side form validation using HTML attributes.</a>
    								<span id="377j5v51b"    class="Articlelist_txts_time">Jul 03, 2025 am	 02:31 AM</span>
    								<p class="Articlelist_txts_p">Client-sideformvalidationcanbedonewithoutJavaScriptbyusingHTMLattributes.1)Userequiredtoenforcemandatoryfields.2)ValidateemailsandURLswithtypeattributeslikeemailorurl,orusepatternwithregexforcustomformats.3)Limitvaluesusingmin,max,minlength,andmaxlen</p>
    							</div>
    														<div   id="377j5v51b"   class="phphistorical_Version2_mids">
    								<a href="http://m.miracleart.cn/faq/1796829956.html" title="How to group options within a select dropdown using html?" class="phphistorical_Version2_mids_img">
    									<img onerror="this.onerror=''; this.src='/static/imghw/default1.png'"
    										src="/static/imghw/default1.png" class="lazy"  data-src="https://img.php.cn/upload/article/001/253/068/175157020270129.jpg?x-oss-process=image/resize,m_fill,h_207,w_330" alt="How to group options within a select dropdown using html?" />
    								</a>
    								<a href="http://m.miracleart.cn/faq/1796829956.html" title="How to group options within a select dropdown using html?" class="phphistorical_Version2_mids_title">How to group options within a select dropdown using html?</a>
    								<span id="377j5v51b"    class="Articlelist_txts_time">Jul 04, 2025 am	 03:16 AM</span>
    								<p class="Articlelist_txts_p">Use tags in HTML to group options in the drop-down menu. The specific method is to wrap a group of elements and define the group name through the label attribute, such as: 1. Contains options such as apples, bananas, oranges, etc.; 2. Contains options such as carrots, broccoli, etc.; 3. Each is an independent group, and the options within the group are automatically indented. Notes include: ① No nesting is supported; ② The entire group can be disabled through the disabled attribute; ③ The style is restricted and needs to be beautified in combination with CSS or third-party libraries; plug-ins such as Select2 can be used to enhance functions.</p>
    							</div>
    														<div   id="377j5v51b"   class="phphistorical_Version2_mids">
    								<a href="http://m.miracleart.cn/faq/1796835653.html" title="Integrating CSS and JavaScript effectively with HTML5 structure." class="phphistorical_Version2_mids_img">
    									<img onerror="this.onerror=''; this.src='/static/imghw/default1.png'"
    										src="/static/imghw/default1.png" class="lazy"  data-src="https://img.php.cn/upload/article/001/253/068/175226046128038.jpg?x-oss-process=image/resize,m_fill,h_207,w_330" alt="Integrating CSS and JavaScript effectively with HTML5 structure." />
    								</a>
    								<a href="http://m.miracleart.cn/faq/1796835653.html" title="Integrating CSS and JavaScript effectively with HTML5 structure." class="phphistorical_Version2_mids_title">Integrating CSS and JavaScript effectively with HTML5 structure.</a>
    								<span id="377j5v51b"    class="Articlelist_txts_time">Jul 12, 2025 am	 03:01 AM</span>
    								<p class="Articlelist_txts_p">HTML5, CSS and JavaScript should be efficiently combined with semantic tags, reasonable loading order and decoupling design. 1. Use HTML5 semantic tags, such as improving structural clarity and maintainability, which is conducive to SEO and barrier-free access; 2. CSS should be placed in, use external files and split by module to avoid inline styles and delayed loading problems; 3. JavaScript is recommended to be introduced in front, and use defer or async to load asynchronously to avoid blocking rendering; 4. Reduce strong dependence between the three, drive behavior through data-* attributes and class name control status, and improve collaboration efficiency through unified naming specifications. These methods can effectively optimize page performance and collaborate with teams.</p>
    							</div>
    														<div   id="377j5v51b"   class="phphistorical_Version2_mids">
    								<a href="http://m.miracleart.cn/faq/1796831880.html" title="Implementing Clickable Buttons Using the HTML button Element" class="phphistorical_Version2_mids_img">
    									<img onerror="this.onerror=''; this.src='/static/imghw/default1.png'"
    										src="/static/imghw/default1.png" class="lazy"  data-src="https://img.php.cn/upload/article/001/253/068/175182671121571.jpg?x-oss-process=image/resize,m_fill,h_207,w_330" alt="Implementing Clickable Buttons Using the HTML button Element" />
    								</a>
    								<a href="http://m.miracleart.cn/faq/1796831880.html" title="Implementing Clickable Buttons Using the HTML button Element" class="phphistorical_Version2_mids_title">Implementing Clickable Buttons Using the HTML button Element</a>
    								<span id="377j5v51b"    class="Articlelist_txts_time">Jul 07, 2025 am	 02:31 AM</span>
    								<p class="Articlelist_txts_p">To use HTML button elements to achieve clickable buttons, you must first master its basic usage and common precautions. 1. Create buttons with tags and define behaviors through type attributes (such as button, submit, reset), which is submitted by default; 2. Add interactive functions through JavaScript, which can be written inline or bind event listeners through ID to improve maintenance; 3. Use CSS to customize styles, including background color, border, rounded corners and hover/active status effects to enhance user experience; 4. Pay attention to common problems: make sure that the disabled attribute is not enabled, JS events are correctly bound, layout occlusion, and use the help of developer tools to troubleshoot exceptions. Master this</p>
    							</div>
    														<div   id="377j5v51b"   class="phphistorical_Version2_mids">
    								<a href="http://m.miracleart.cn/faq/1796832574.html" title="Submitting Form Data Using New HTML5 Methods (FormData)" class="phphistorical_Version2_mids_img">
    									<img onerror="this.onerror=''; this.src='/static/imghw/default1.png'"
    										src="/static/imghw/default1.png" class="lazy"  data-src="https://img.php.cn/upload/article/001/253/068/175191288234525.jpg?x-oss-process=image/resize,m_fill,h_207,w_330" alt="Submitting Form Data Using New HTML5 Methods (FormData)" />
    								</a>
    								<a href="http://m.miracleart.cn/faq/1796832574.html" title="Submitting Form Data Using New HTML5 Methods (FormData)" class="phphistorical_Version2_mids_title">Submitting Form Data Using New HTML5 Methods (FormData)</a>
    								<span id="377j5v51b"    class="Articlelist_txts_time">Jul 08, 2025 am	 02:28 AM</span>
    								<p class="Articlelist_txts_p">It is more convenient to submit form data using HTML5's FormData API. 1. It can automatically collect form fields with name attribute or manually add data; 2. It supports submission in multipart/form-data format through fetch or XMLHttpRequest, which is suitable for file upload; 3. When processing files, you only need to append the file to FormData and send a request; 4. Note that the same name field will be overwritten, and JSON conversion and no nesting structure need to be handled.</p>
    							</div>
    													</div>
    
    													<a href="http://m.miracleart.cn/web-designer.html" class="phpgenera_Details_mainL4_botton">
    								<span>See all articles</span>
    								<img src="/static/imghw/down_right.png" alt="" />
    							</a>
    											</div>
    				</div>
    					</div>
    	</main>
    	<footer>
        <div   id="377j5v51b"   class="footer">
            <div   id="377j5v51b"   class="footertop">
                <img src="/static/imghw/logo.png" alt="">
                <p>Public welfare online PHP training,Help PHP learners grow quickly!</p>
            </div>
            <div   id="377j5v51b"   class="footermid">
                <a href="http://m.miracleart.cn/about/us.html">About us</a>
                <a href="http://m.miracleart.cn/about/disclaimer.html">Disclaimer</a>
                <a href="http://m.miracleart.cn/update/article_0_1.html">Sitemap</a>
            </div>
            <div   id="377j5v51b"   class="footerbottom">
                <p>
                    ? php.cn All rights reserved
                </p>
            </div>
        </div>
    </footer>
    
    <input type="hidden" id="verifycode" value="/captcha.html">
    
    
    
    
    		<link rel='stylesheet' id='_main-css' href='/static/css/viewer.min.css?2' type='text/css' media='all' />
    	
    	
    	
    	
    	
    
    	
    	
    
    
    
    
    
    
    <footer>
    <div class="friendship-link">
    <p>感谢您访问我们的网站,您可能还对以下资源感兴趣:</p>
    <a href="http://m.miracleart.cn/" title="国产av日韩一区二区三区精品">国产av日韩一区二区三区精品</a>
    
    <div class="friend-links">
    
    
    </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="buqmz" class="pl_css_ganrao" style="display: none;"><ul id="buqmz"><kbd id="buqmz"><dfn id="buqmz"></dfn></kbd></ul><strike id="buqmz"></strike><table id="buqmz"><strong id="buqmz"><small id="buqmz"><fieldset id="buqmz"></fieldset></small></strong></table><u id="buqmz"><ruby id="buqmz"><tr id="buqmz"><abbr id="buqmz"></abbr></tr></ruby></u><p id="buqmz"><strike id="buqmz"><fieldset id="buqmz"><i id="buqmz"></i></fieldset></strike></p><ul id="buqmz"></ul><fieldset id="buqmz"><dl id="buqmz"><s id="buqmz"></s></dl></fieldset><sub id="buqmz"><progress id="buqmz"><delect id="buqmz"></delect></progress></sub><s id="buqmz"></s><label id="buqmz"></label><option id="buqmz"></option><i id="buqmz"><source id="buqmz"></source></i><rp id="buqmz"><abbr id="buqmz"><li id="buqmz"><label id="buqmz"></label></li></abbr></rp><acronym id="buqmz"></acronym><em id="buqmz"><listing id="buqmz"><dfn id="buqmz"><label id="buqmz"></label></dfn></listing></em><meter id="buqmz"><center id="buqmz"><delect id="buqmz"></delect></center></meter><strong id="buqmz"></strong><big id="buqmz"></big><ins id="buqmz"><tr id="buqmz"></tr></ins><ins id="buqmz"><em id="buqmz"></em></ins><optgroup id="buqmz"><nav id="buqmz"></nav></optgroup><rp id="buqmz"><video id="buqmz"><tbody id="buqmz"><abbr id="buqmz"></abbr></tbody></video></rp><font id="buqmz"><dfn id="buqmz"></dfn></font><ruby id="buqmz"><b id="buqmz"></b></ruby><label id="buqmz"></label><th id="buqmz"></th><tr id="buqmz"></tr><s id="buqmz"><fieldset id="buqmz"><dl id="buqmz"><tr id="buqmz"></tr></dl></fieldset></s><thead id="buqmz"></thead><object id="buqmz"></object><xmp id="buqmz"></xmp><em id="buqmz"><button id="buqmz"></button></em><td id="buqmz"></td><dfn id="buqmz"></dfn><center id="buqmz"><output id="buqmz"><abbr id="buqmz"><b id="buqmz"></b></abbr></output></center><tt id="buqmz"><option id="buqmz"></option></tt><tbody id="buqmz"><label id="buqmz"></label></tbody><button id="buqmz"><th id="buqmz"><nobr id="buqmz"><small id="buqmz"></small></nobr></th></button><small id="buqmz"></small><address id="buqmz"></address><ruby id="buqmz"></ruby><menuitem id="buqmz"><thead id="buqmz"></thead></menuitem><code id="buqmz"></code><small id="buqmz"><strong id="buqmz"><i id="buqmz"></i></strong></small><form id="buqmz"></form><div id="buqmz"><big id="buqmz"><samp id="buqmz"><delect id="buqmz"></delect></samp></big></div><sup id="buqmz"><samp id="buqmz"><delect id="buqmz"><abbr id="buqmz"></abbr></delect></samp></sup><optgroup id="buqmz"></optgroup><p id="buqmz"><td id="buqmz"><center id="buqmz"><address id="buqmz"></address></center></td></p><form id="buqmz"></form><source id="buqmz"><wbr id="buqmz"><blockquote id="buqmz"><sub id="buqmz"></sub></blockquote></wbr></source><tr id="buqmz"></tr><tbody id="buqmz"></tbody><progress id="buqmz"></progress><acronym id="buqmz"><pre id="buqmz"><rp id="buqmz"><table id="buqmz"></table></rp></pre></acronym><dfn id="buqmz"><mark id="buqmz"><ins id="buqmz"></ins></mark></dfn><ruby id="buqmz"><delect id="buqmz"></delect></ruby><form id="buqmz"><address id="buqmz"><sup id="buqmz"><center id="buqmz"></center></sup></address></form><style id="buqmz"></style><strike id="buqmz"><dl id="buqmz"><td id="buqmz"></td></dl></strike><strike id="buqmz"></strike><tbody id="buqmz"></tbody><em id="buqmz"><button id="buqmz"></button></em><progress id="buqmz"><delect id="buqmz"><ruby id="buqmz"></ruby></delect></progress><ruby id="buqmz"></ruby><td id="buqmz"></td><nobr id="buqmz"><abbr id="buqmz"><strong id="buqmz"></strong></abbr></nobr><option id="buqmz"></option><pre id="buqmz"><object id="buqmz"></object></pre><ins id="buqmz"></ins><sup id="buqmz"><ruby id="buqmz"><tr id="buqmz"></tr></ruby></sup><strong id="buqmz"><small id="buqmz"></small></strong><delect id="buqmz"></delect><rp id="buqmz"><abbr id="buqmz"><dfn id="buqmz"><abbr id="buqmz"></abbr></dfn></abbr></rp><dfn id="buqmz"><mark id="buqmz"><ins id="buqmz"></ins></mark></dfn><option id="buqmz"></option><em id="buqmz"><video id="buqmz"></video></em><delect id="buqmz"></delect><code id="buqmz"></code><big id="buqmz"></big><meter id="buqmz"></meter><kbd id="buqmz"><form id="buqmz"><pre id="buqmz"></pre></form></kbd><center id="buqmz"></center><dfn id="buqmz"><label id="buqmz"><input id="buqmz"></input></label></dfn><li id="buqmz"></li><noframes id="buqmz"><ul id="buqmz"><u id="buqmz"></u></ul></noframes><ul id="buqmz"></ul><div id="buqmz"></div><font id="buqmz"></font><code id="buqmz"><legend id="buqmz"><object id="buqmz"><ol id="buqmz"></ol></object></legend></code><meter id="buqmz"></meter><em id="buqmz"></em><noframes id="buqmz"></noframes><noframes id="buqmz"><li id="buqmz"></li></noframes><optgroup id="buqmz"></optgroup><i id="buqmz"><label id="buqmz"><rt id="buqmz"></rt></label></i><div id="buqmz"><span id="buqmz"><xmp id="buqmz"></xmp></span></div><style id="buqmz"></style><font id="buqmz"></font></div>
    
    </html>