Print html code in php

A fundamental use of the PHP programming language is to build dynamic web applications. Hence, we often need to print information in HTML inside a PHP web application.

This guide will learn about two main ways to print HTML content on a PHP web application.

PHP Echo Function

If you know the basics of PHP and get output, you know about the echo method. It is used extensively in PHP to output values on the screen. Although the echo method does not behave like a function, more like a constructor, you can add parenthesis to the statement if required.

Like any other valid PHP statement, you terminate it with a semi-colon. The echo method will take the content inside the quotes and print it to the screen.

You can use the echo statement to print strings, variables, results from expressions and functions, and more.

The examples below show how to use the echo statement.


    $var = 10;
    echo "this is a string";
    echo 10;
    echo "value of var is $var";
?>

The above examples contain multiple statements that can print strings, numbers, and variable interpolation.

If you want to print multiple statements, you can specify each of them separated by comma as shown in the example below:


    echo "Hello", "anotherone", "and another", "\n";
?>

To print HTML markup using the echo statement, we can pass the content to it as shown in the example below:


    $version = "HTML5";
    echo "

This is valid {$version}

";
?>

The code above will print valid HTML content.

PHP Print Function

The other method we can use to print HTML markup in PHP is the print function.

It is similar to echo, except it behaves like a standard PHP function. It accepts a single argument meaning it can print a single string.

The following is a simple example of the print method.

Like echo, you can output strings, numbers, and variables using the print statement.

To print HTML content using the print statement, you can do:


    print "

This is HTML markup

";
?>

The above should process the markup and display it accordingly.

If you want to learn how to print PHP values and variables inside HTML, check our tutorial on the topic.

Closing

This tutorial taught you how to print HTML markup inside a PHP file. This helps make the web page dynamic as you can fetch information from the server and display it on the browser.

About the author

Print html code in php

My name is John and am a fellow geek like you. I am passionate about all things computers from Hardware, Operating systems to Programming. My dream is to share my knowledge with the world and help out fellow geeks. Follow my content by subscribing to LinuxHint mailing list

I have HTML tags present inside php variable. I want to print the values as it is. Here is what i tried.

$str = "A 'quote' is bold";

echo htmlentities($str);
// Outputs: A 'quote' is <b>bold</b>

echo $str; //out puts as follows

A 'quote' is bold

But i want to print it as

 A 'quote' is bold

Also, Is there any setting can be done at the TOP of the php page, so that i dont need to use it in every php variables ?

asked Feb 23, 2014 at 12:38

Print html code in php

7

Just use

 $str = "A 'quote' is bold ";

echo htmlspecialchars($str);

because htmlentities convert some characters to HTML entities.

You should instead use htmlspecialchars

It replaces characters as below:

'&' (ampersand) becomes &
'"' (double quote) becomes " when ENT_NOQUOTES is not set.
"'" (single quote) becomes ' only when ENT_QUOTES is set.
'<' (less than) becomes <
'>' (greater than) becomes >

You can check php fiddle here

answered Feb 23, 2014 at 12:43

Print html code in php

ShivaShiva

6,4744 gold badges34 silver badges59 bronze badges

6

This should work -

$str = "A 'quote' is bold";
echo "".$str."";
//Outputs - A 'quote' is bold

EDIT:

</code> is deprecated as was pointed out in the comments, and this seems to be the workaround for it(using the <code><PRE></code> tag and <code>htmlentities</code>)-</p><pre><code>$str = "A 'quote' is <b>bold</b>"; echo "<pre>".htmlentities($str)."</pre>"; //Outputs - A 'quote' is <b>bold</b> </code></pre></p><p><p> answered <span>Feb 23, 2014 at 12:51</span></p><p> <p><div class="imgBox"><img alt="Print html code in php" data-orgimg="https://sg.cdnki.com/print-html-code-in-php---aHR0cHM6Ly9pLnN0YWNrLmltZ3VyLmNvbS9WUUdpYS5qcGc/cz02NCZnPTE=.webp" ></img></div></p><p><p>Kamehameha<span>Kamehameha</span></p><p><span>5,373</span><span>1 gold badge</span><span>22 silver badges</span><span>27 bronze badges</span></p><p><span>5</span></p><p><p><p><p>If you want to print HTML, don't use <code>htmlentities</code>.</p><p>If this is user input, you should still filter it.</p><p>Edit:</p><p>If you want the browser to show the text as <code>A 'quote' is <b>bold</b></code>, <code>htmlspecialchars</code> or <code>htmlentities</code> is the correct function to use as they escape the HTML code and the browser will show the tags as you want.</p><p><p><p> <p></p><div style="width:100%; margin:20px auto; display:block"> <ins class="adsbygoogle" style="display:block; text-align:center;" data-ad-layout="in-article" data-ad-format="fluid" data-ad-client="ca-pub-4987931798153631" data-ad-slot="8587332220"></ins> <script> (adsbygoogle = window.adsbygoogle || []).push({}); </script> </div></p><p><p>BenMorel</p><p><span>32.7k</span><span>48 gold badges</span><span>170 silver badges</span><span>302 bronze badges</span></p><p><p> answered <span>Feb 23, 2014 at 12:41</span></p><p> <p><div class="imgBox"><img alt="Print html code in php" data-orgimg="https://sg.cdnki.com/print-html-code-in-php---aHR0cHM6Ly9pLnN0YWNrLmltZ3VyLmNvbS9kNUwwVS5wbmc/cz02NCZnPTE=.webp" ></img></div></p><p><p>max-m<span>max-m</span></p><p><span>827</span><span>7 silver badges</span><span>9 bronze badges</span></p><p><span>3</span></p><p><p><p>to make it as setting..</p><pre><code><?php function my_custom_echo($str) { echo htmlspecialchars($str); } my_custom_echo("<p>what ever I want </P>") ?> </code></pre></p><p><p> answered <span>Feb 23, 2014 at 13:43</span></p><p> <p><div class="imgBox"><img alt="Print html code in php" data-orgimg="https://sg.cdnki.com/print-html-code-in-php---aHR0cHM6Ly9pLnN0YWNrLmltZ3VyLmNvbS8zanZWVi5qcGc/cz02NCZnPTE=.webp" ></img></div></p><p><p>logan<span>logan</span></p><p><span>7,556</span><span>36 gold badges</span><span>108 silver badges</span><span>181 bronze badges</span></p><h2></h2></p> </p><div class='paramage'></div> <div class="contenBreak"></div> <h3 id="can-i-write-html-code-in-php">Can I write HTML code in PHP?</h3> <div class="blockAnswer_acceptedAnswer">While HTML and PHP are two separate programming languages, you might want to use both of them on the same page to take advantage of what they both offer. With one or both of these methods, <span class="FCUp0c rQMQod">you can easily embed HTML code in your PHP pages to format them better and make them more user-friendly</span>.</div> <h3 id="how-do-i-print-html-code">How do I print HTML code?</h3> <div class="blockAnswer_acceptedAnswer"><div class='ListData'><span class="FCUp0c rQMQod">Printing an HTML Document</span>.</div> <div class='ListData'>Open a document in the HTML editor..</div> <div class='ListData'>Do one of the following: On the main menu, click File > Print. Press CTRL+P. The document prints as it appears in the HTML editor, NOT as it appears in a browser..</div> </div> <h3 id="how-include-html-code-in-php">HOW include HTML code in PHP?</h3> <div class="blockAnswer_acceptedAnswer">Step 1: Firstly, we have to type the Html code in any text editor or open the existing Html file in the text editor in which we want to use the PHP. Step 2: Now, we have to place the cursor in any tag of the <body> tag where we want to add the code of PHP. And, then we have to type the start and end tag of PHP.</div> <h3 id="how-do-i-print-a-php-script">How do I print a PHP script?</h3> <div class="blockAnswer_acceptedAnswer">The echo command is used in PHP to print any value to the HTML document. <span class="FCUp0c rQMQod">Use <script> tag inside echo command to print to the console</span>.</div> </p></div> <div class="readmore_content_exists"><button id="readmore_content"><span class="arrow"><span></span></span>Đọc tiếp</button></div> </td></tr></table> <script async src="/dist/js/lazyhtml.min.js" crossorigin="anonymous"></script> <div class="lazyhtml" data-lazyhtml> <script type="text/lazyhtml"> <div class="youtubeVideo"><h3>Video liên quan</h3> <iframe width="560" height="315" src="https://www.youtube.com/embed/jUmKU7Z-h0c?controls=0" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture"allowfullscreen></iframe> </div> </script> </div> <div class="mt-3"> <div class="tags"> <a href="https://biquyetxaynha.com/tags/programming" class="tag-link">programming</a> <a href="https://biquyetxaynha.com/tags/php" class="tag-link">php</a> <a href="https://biquyetxaynha.com/tags/PHP print array" class="tag-link">PHP print array</a> </div> </div> <div class="post-tools"> <button data-postid="print-html-code-in-php" class="btn btn-answerModalBox"><img class="mr-1" alt="Print html code in php" src="/dist/images/svg/messages_16.svg">Reply</button> <button data-postid="print-html-code-in-php" data-vote="up" class="btn btn-doVote"><img class="mr-1" alt="Print html code in php" src="/dist/images/svg/face-smile_16.svg">4</button> <button data-postid="print-html-code-in-php" data-vote="down" class="btn btn-doVote"><img class="mr-1" alt="Print html code in php" src="/dist/images/svg/poo_16.svg">0</button> <button class="btn"><img class="mr-1" alt="Print html code in php" src="/dist/images/svg/facebook_16.svg"> Chia sẻ</button> </div> </div><!-- end question-post-body --> </div><!-- end question-post-body-wrap --> </div><!-- end question --> <div id="answers_print-html-code-in-php" class="answers"> </div><!-- end answer-wrap --> <div class="entryFooter"> <div class="footerLinkAds"><div style="width:100%; margin:0 auto;"> <ins class="adsbygoogle" style="display:block" data-ad-format="autorelaxed" data-ad-client="ca-pub-4987931798153631" data-ad-slot="8199996671"></ins> <script> (adsbygoogle = window.adsbygoogle || []).push({}); </script> </div> </div> <div class="footerRelated"><div class="postRelatedWidget"> <h2>Bài Viết Liên Quan</h2> <div class="questions-snippet layoutNews border-top border-top-gray"> <div class="max-width:840px"> <ins class="adsbygoogle" style="display:block" data-ad-format="fluid" data-ad-layout-key="-fb-44+c1-1p-ns" data-ad-client="ca-pub-4987931798153631" data-ad-slot="7655066491"></ins> <script> (adsbygoogle = window.adsbygoogle || []).push({}); </script> </div> <div class="media media-card rounded-0 shadow-none mb-0 bg-transparent py-4 px-0 border-bottom border-bottom-gray"> <div class="media-image"> <a href="/lam-the-nao-de-ban-gai-quan-tam-minh-hon-nam-2024"><img src="/dist/images/waiting.svg" width="200px" height="100px" data-orgimg="https://i.ytimg.com/vi/JBugMfwEpjo/hq720.jpg?sqp=-oaymwEXCNAFEJQDSFryq4qpAwkIARUAAIhCGAE=&rs=AOn4CLCJnaxQm88NnVrdN01RhDUO8zjyIw" alt="Làm thế nào để bạn gái quan tâm mình hơn năm 2024"></a> </div> <div class="media-body"> <h5 class="mb-2 fw-medium"><a href="/lam-the-nao-de-ban-gai-quan-tam-minh-hon-nam-2024">Làm thế nào để bạn gái quan tâm mình hơn năm 2024</a></h5> <p class="mb-2 truncate lh-20 fs-15"></p> <div class="media media-card questionTags user-media px-0 border-bottom-0 pb-0"> <div class="tags"> <a href="/tags/mẹo hay" class="tag-link">mẹo hay</a> <a href="/tags/Hỏi Đáp" class="tag-link">Hỏi Đáp</a> <a href="/tags/Thế nào" class="tag-link">Thế nào</a> <a href="/tags/Giới Tính" class="tag-link">Giới Tính</a> <a href="/tags/Gái" class="tag-link">Gái</a> </div> </div> </div> </div><!-- end media --> <div class="media media-card rounded-0 shadow-none mb-0 bg-transparent py-4 px-0 border-bottom border-bottom-gray"> <div class="media-image"> <a href="/ngu-van-lop-7-tap-1-cong-truong-mo-ra-nam-2024"><img src="/dist/images/waiting.svg" width="200px" height="100px" data-orgimg="https://i.ytimg.com/vi/XyuuQoaa36U/hqdefault.jpg?sqp=-oaymwE9COADEI4CSFryq4qpAy8IARUAAAAAGAElAADIQj0AgKJDeAHwAQH4Af4JgALQBYoCDAgAEAEYGyBiKGUwDw==&rs=AOn4CLAcqTA21w3DUEbIxP-q0SyqAUt5IQ" alt="Ngữ văn lớp 7 tập 1 cổng trường mở ra năm 2024"></a> </div> <div class="media-body"> <h5 class="mb-2 fw-medium"><a href="/ngu-van-lop-7-tap-1-cong-truong-mo-ra-nam-2024">Ngữ văn lớp 7 tập 1 cổng trường mở ra năm 2024</a></h5> <p class="mb-2 truncate lh-20 fs-15"></p> <div class="media media-card questionTags user-media px-0 border-bottom-0 pb-0"> <div class="tags"> <a href="/tags/mẹo hay" class="tag-link">mẹo hay</a> </div> </div> </div> </div><!-- end media --> <div class="media media-card rounded-0 shadow-none mb-0 bg-transparent py-4 px-0 border-bottom border-bottom-gray"> <div class="media-image"> <a href="/bai-tap-luyen-viet-lai-cau-dieu-kien-nam-2024"><img src="/dist/images/waiting.svg" width="200px" height="100px" data-orgimg="https://i.ytimg.com/vi/9WXDLDXspek/hq720.jpg?sqp=-oaymwEXCNAFEJQDSFryq4qpAwkIARUAAIhCGAE=&rs=AOn4CLC6uIekEl0Se0PCSJ7J_NzPZAZ17w" alt="Bài tập luyện viết lại câu điều kiện năm 2024"></a> </div> <div class="media-body"> <h5 class="mb-2 fw-medium"><a href="/bai-tap-luyen-viet-lai-cau-dieu-kien-nam-2024">Bài tập luyện viết lại câu điều kiện năm 2024</a></h5> <p class="mb-2 truncate lh-20 fs-15"></p> <div class="media media-card questionTags user-media px-0 border-bottom-0 pb-0"> <div class="tags"> <a href="/tags/mẹo hay" class="tag-link">mẹo hay</a> <a href="/tags/Khỏe Đẹp" class="tag-link">Khỏe Đẹp</a> <a href="/tags/Bài tập" class="tag-link">Bài tập</a> <a href="/tags/If 1" class="tag-link">If 1</a> </div> </div> </div> </div><!-- end media --> <div class="media media-card rounded-0 shadow-none mb-0 bg-transparent py-4 px-0 border-bottom border-bottom-gray"> <div class="media-image"> <a href="/trung-tam-hoc-tieng-anh-o-binh-duong-nam-2024"><img src="/dist/images/waiting.svg" width="200px" height="100px" data-orgimg="https://i.ytimg.com/vi/zYHb80obRRQ/hq720.jpg?sqp=-oaymwEXCNAFEJQDSFryq4qpAwkIARUAAIhCGAE=&rs=AOn4CLDY47CnYMg2GYnZyTV0XmTeHQpvRA" alt="Trung tâm học tiếng anh ở bình dương năm 2024"></a> </div> <div class="media-body"> <h5 class="mb-2 fw-medium"><a href="/trung-tam-hoc-tieng-anh-o-binh-duong-nam-2024">Trung tâm học tiếng anh ở bình dương năm 2024</a></h5> <p class="mb-2 truncate lh-20 fs-15"></p> <div class="media media-card questionTags user-media px-0 border-bottom-0 pb-0"> <div class="tags"> <a href="/tags/mẹo hay" class="tag-link">mẹo hay</a> <a href="/tags/Học Tốt" class="tag-link">Học Tốt</a> <a href="/tags/Học" class="tag-link">Học</a> <a href="/tags/Tiếng anh" class="tag-link">Tiếng anh</a> </div> </div> </div> </div><!-- end media --> <div class="media media-card rounded-0 shadow-none mb-0 bg-transparent py-4 px-0 border-bottom border-bottom-gray"> <div class="media-image"> <a href="/bai-tap-ve-viet-phuong-trinh-hoa-hoc-cua-oxit-nam-2024"><img src="/dist/images/waiting.svg" width="200px" height="100px" data-orgimg="https://i.ytimg.com/vi/-OkQcRuN364/hq720.jpg?sqp=-oaymwEXCNAFEJQDSFryq4qpAwkIARUAAIhCGAE=&rs=AOn4CLA-Pu-FHtKVA18oQFt-G5yWXg26Hg" alt="Bài tập về viết phương trình hóa học của oxit năm 2024"></a> </div> <div class="media-body"> <h5 class="mb-2 fw-medium"><a href="/bai-tap-ve-viet-phuong-trinh-hoa-hoc-cua-oxit-nam-2024">Bài tập về viết phương trình hóa học của oxit năm 2024</a></h5> <p class="mb-2 truncate lh-20 fs-15"></p> <div class="media media-card questionTags user-media px-0 border-bottom-0 pb-0"> <div class="tags"> <a href="/tags/mẹo hay" class="tag-link">mẹo hay</a> <a href="/tags/Khỏe Đẹp" class="tag-link">Khỏe Đẹp</a> <a href="/tags/Bài tập" class="tag-link">Bài tập</a> <a href="/tags/Học Tốt" class="tag-link">Học Tốt</a> <a href="/tags/Học" class="tag-link">Học</a> <a href="/tags/Phương trình" class="tag-link">Phương trình</a> </div> </div> </div> </div><!-- end media --> <div class="media media-card rounded-0 shadow-none mb-0 bg-transparent py-4 px-0 border-bottom border-bottom-gray"> <div class="media-image"> <a href="/cac-bai-van-mau-lop-5-hoc-ki-2-nam-2024"><img src="/dist/images/waiting.svg" width="200px" height="100px" data-orgimg="https://i.ytimg.com/vi/AosA8j37lEs/hq720.jpg?sqp=-oaymwEXCNAFEJQDSFryq4qpAwkIARUAAIhCGAE=&rs=AOn4CLA-MOXCRC7Vf7j6_e1hvMTgrQhP-A" alt="Các bai văn mẫu lớp 5 hoc ki 2 năm 2024"></a> </div> <div class="media-body"> <h5 class="mb-2 fw-medium"><a href="/cac-bai-van-mau-lop-5-hoc-ki-2-nam-2024">Các bai văn mẫu lớp 5 hoc ki 2 năm 2024</a></h5> <p class="mb-2 truncate lh-20 fs-15"></p> <div class="media media-card questionTags user-media px-0 border-bottom-0 pb-0"> <div class="tags"> <a href="/tags/mẹo hay" class="tag-link">mẹo hay</a> </div> </div> </div> </div><!-- end media --> <div class="media media-card rounded-0 shadow-none mb-0 bg-transparent py-4 px-0 border-bottom border-bottom-gray"> <div class="media-image"> <a href="/cach-giai-pt-hoa-hoc-theo-x-y-nam-2024"><img src="/dist/images/waiting.svg" width="200px" height="100px" data-orgimg="https://i.ytimg.com/vi/adds3NsefMM/hq720.jpg?sqp=-oaymwEXCNAFEJQDSFryq4qpAwkIARUAAIhCGAE=&rs=AOn4CLDpT1oaxS0vNEQOSUQdzNmYE6AT8Q" alt="Cách giải pt hóa học theo x y năm 2024"></a> </div> <div class="media-body"> <h5 class="mb-2 fw-medium"><a href="/cach-giai-pt-hoa-hoc-theo-x-y-nam-2024">Cách giải pt hóa học theo x y năm 2024</a></h5> <p class="mb-2 truncate lh-20 fs-15"></p> <div class="media media-card questionTags user-media px-0 border-bottom-0 pb-0"> <div class="tags"> <a href="/tags/mẹo hay" class="tag-link">mẹo hay</a> <a href="/tags/Mẹo Hay" class="tag-link">Mẹo Hay</a> <a href="/tags/Cách" class="tag-link">Cách</a> <a href="/tags/Học Tốt" class="tag-link">Học Tốt</a> <a href="/tags/Học" class="tag-link">Học</a> </div> </div> </div> </div><!-- end media --> <div class="media media-card rounded-0 shadow-none mb-0 bg-transparent py-4 px-0 border-bottom border-bottom-gray"> <div class="media-image"> <a href="/thuoc-oraptic-40-mg-dieu-tri-xuat-huyet-tieu-hoa-nam-2024"><img src="/dist/images/waiting.svg" width="200px" height="100px" data-orgimg="https://i.ytimg.com/vi/W4vwHBacCvM/hq720.jpg?sqp=-oaymwEXCNAFEJQDSFryq4qpAwkIARUAAIhCGAE=&rs=AOn4CLA3hfN9zUgHvHjyIUfNPNfKVqcatA" alt="Thuốc oraptic 40 mg điều trị xuất huyết tiêu hóa năm 2024"></a> </div> <div class="media-body"> <h5 class="mb-2 fw-medium"><a href="/thuoc-oraptic-40-mg-dieu-tri-xuat-huyet-tieu-hoa-nam-2024">Thuốc oraptic 40 mg điều trị xuất huyết tiêu hóa năm 2024</a></h5> <p class="mb-2 truncate lh-20 fs-15"></p> <div class="media media-card questionTags user-media px-0 border-bottom-0 pb-0"> <div class="tags"> <a href="/tags/mẹo hay" class="tag-link">mẹo hay</a> <a href="/tags/Khỏe Đẹp" class="tag-link">Khỏe Đẹp</a> <a href="/tags/Thuốc" class="tag-link">Thuốc</a> </div> </div> </div> </div><!-- end media --> <div class="media media-card rounded-0 shadow-none mb-0 bg-transparent py-4 px-0 border-bottom border-bottom-gray"> <div class="media-image"> <a href="/may-tinh-nhu-the-nao-moi-choi-duoc-lien-minh-nam-2024"><img src="/dist/images/waiting.svg" width="200px" height="100px" data-orgimg="https://i.ytimg.com/vi/aY3HIXFBjDc/hq720.jpg?sqp=-oaymwEXCNAFEJQDSFryq4qpAwkIARUAAIhCGAE=&rs=AOn4CLADvNb68896qrQifjCJ9ZpYCiO-jw" alt="Máy tính như thế nào mới chơi được liên minh năm 2024"></a> </div> <div class="media-body"> <h5 class="mb-2 fw-medium"><a href="/may-tinh-nhu-the-nao-moi-choi-duoc-lien-minh-nam-2024">Máy tính như thế nào mới chơi được liên minh năm 2024</a></h5> <p class="mb-2 truncate lh-20 fs-15"></p> <div class="media media-card questionTags user-media px-0 border-bottom-0 pb-0"> <div class="tags"> <a href="/tags/mẹo hay" class="tag-link">mẹo hay</a> <a href="/tags/Hỏi Đáp" class="tag-link">Hỏi Đáp</a> <a href="/tags/Thế nào" class="tag-link">Thế nào</a> <a href="/tags/Công Nghệ" class="tag-link">Công Nghệ</a> <a href="/tags/Máy tính" class="tag-link">Máy tính</a> <a href="/tags/Máy" class="tag-link">Máy</a> <a href="/tags/Liên Minh" class="tag-link">Liên Minh</a> <a href="/tags/LoL" class="tag-link">LoL</a> </div> </div> </div> </div><!-- end media --> <div class="media media-card rounded-0 shadow-none mb-0 bg-transparent py-4 px-0 border-bottom border-bottom-gray"> <div class="media-image"> <a href="/bai-tap-tim-chu-ki-tuan-hoan-cua-ham-so-nam-2024"><img src="/dist/images/waiting.svg" width="200px" height="100px" data-orgimg="https://i.ytimg.com/vi/RMVRXSpSaiA/hqdefault.jpg?sqp=-oaymwE9COADEI4CSFryq4qpAy8IARUAAAAAGAElAADIQj0AgKJDeAHwAQH4AdQGgALgA4oCDAgAEAEYNyBlKFowDw==&rs=AOn4CLA-vWmrzJvwryWkBI4k5SilxDG2Iw" alt="Bài tập tìm chu kì tuần hoàn của hàm số năm 2024"></a> </div> <div class="media-body"> <h5 class="mb-2 fw-medium"><a href="/bai-tap-tim-chu-ki-tuan-hoan-cua-ham-so-nam-2024">Bài tập tìm chu kì tuần hoàn của hàm số năm 2024</a></h5> <p class="mb-2 truncate lh-20 fs-15"></p> <div class="media media-card questionTags user-media px-0 border-bottom-0 pb-0"> <div class="tags"> <a href="/tags/mẹo hay" class="tag-link">mẹo hay</a> <a href="/tags/Khỏe Đẹp" class="tag-link">Khỏe Đẹp</a> <a href="/tags/Bài tập" class="tag-link">Bài tập</a> </div> </div> </div> </div><!-- end media --> <div class="max-width:840px"> <ins class="adsbygoogle" style="display:block" data-ad-format="fluid" data-ad-layout-key="-fb-44+c1-1p-ns" data-ad-client="ca-pub-4987931798153631" data-ad-slot="7655066491"></ins> <script> (adsbygoogle = window.adsbygoogle || []).push({}); </script> </div> <div class="media media-card rounded-0 shadow-none mb-0 bg-transparent py-4 px-0 border-bottom border-bottom-gray"> <div class="media-image"> <a href="/bang-excel-tinh-toan-mong-bang-duoi-tuong-nam-2024"><img src="/dist/images/waiting.svg" width="200px" height="100px" data-orgimg="https://i.ytimg.com/vi/39Rt_aOTGQw/hq720.jpg?sqp=-oaymwEXCNAFEJQDSFryq4qpAwkIARUAAIhCGAE=&rs=AOn4CLCHV1AVATi6X_xJ45nQJFs0mxyPZQ" alt="Bảng excel tính toán móng băng dưới tường năm 2024"></a> </div> <div class="media-body"> <h5 class="mb-2 fw-medium"><a href="/bang-excel-tinh-toan-mong-bang-duoi-tuong-nam-2024">Bảng excel tính toán móng băng dưới tường năm 2024</a></h5> <p class="mb-2 truncate lh-20 fs-15"></p> <div class="media media-card questionTags user-media px-0 border-bottom-0 pb-0"> <div class="tags"> <a href="/tags/mẹo hay" class="tag-link">mẹo hay</a> <a href="/tags/Hơn" class="tag-link">Hơn</a> </div> </div> </div> </div><!-- end media --> <div class="media media-card rounded-0 shadow-none mb-0 bg-transparent py-4 px-0 border-bottom border-bottom-gray"> <div class="media-image"> <a href="/khong-toi-xin-loi-that-it-dien-viet-nam-2024"><img src="/dist/images/waiting.svg" width="200px" height="100px" data-orgimg="https://i.ytimg.com/vi/tpN8ZEOvWSA/hq720.jpg?sqp=-oaymwExCNAFEJQDSFryq4qpAyMIARUAAIhCGADwAQH4AbYIgAKAD4oCDAgAEAEYciBBKDQwDw==&rs=AOn4CLCdtpLXjXvSAgAY-ZNgiboBrV-Dtg" alt="Không tôi xin lỗi thật ít điên việt năm 2024"></a> </div> <div class="media-body"> <h5 class="mb-2 fw-medium"><a href="/khong-toi-xin-loi-that-it-dien-viet-nam-2024">Không tôi xin lỗi thật ít điên việt năm 2024</a></h5> <p class="mb-2 truncate lh-20 fs-15"></p> <div class="media media-card questionTags user-media px-0 border-bottom-0 pb-0"> <div class="tags"> <a href="/tags/mẹo hay" class="tag-link">mẹo hay</a> </div> </div> </div> </div><!-- end media --> <div class="media media-card rounded-0 shadow-none mb-0 bg-transparent py-4 px-0 border-bottom border-bottom-gray"> <div class="media-image"> <a href="/bai-tho-cua-do-phu-trong-van-ban-nam-2024"><img src="/dist/images/waiting.svg" width="200px" height="100px" data-orgimg="https://i.ytimg.com/vi/8842XTKFRIE/hqdefault.jpg?sqp=-oaymwEjCOADEI4CSFryq4qpAxUIARUAAAAAGAElAADIQj0AgKJDeAE=&rs=AOn4CLBUAIYLo4lnRZyLQi7jPE3EA-M_NQ" alt="Bài thơ của đỗ phũ trong văn bản năm 2024"></a> </div> <div class="media-body"> <h5 class="mb-2 fw-medium"><a href="/bai-tho-cua-do-phu-trong-van-ban-nam-2024">Bài thơ của đỗ phũ trong văn bản năm 2024</a></h5> <p class="mb-2 truncate lh-20 fs-15"></p> <div class="media media-card questionTags user-media px-0 border-bottom-0 pb-0"> <div class="tags"> <a href="/tags/mẹo hay" class="tag-link">mẹo hay</a> <a href="/tags/Thơ Lý Bạch" class="tag-link">Thơ Lý Bạch</a> <a href="/tags/Trang thơ hay" class="tag-link">Trang thơ hay</a> </div> </div> </div> </div><!-- end media --> <div class="media media-card rounded-0 shadow-none mb-0 bg-transparent py-4 px-0 border-bottom border-bottom-gray"> <div class="media-image"> <a href="/soan-van-tuyen-ngon-doc-lap-phan-1-ngan-nhat-nam-2024"><img src="/dist/images/waiting.svg" width="200px" height="100px" data-orgimg="https://i.ytimg.com/vi/10XxourWH0s/hqdefault.jpg?sqp=-oaymwEjCOADEI4CSFryq4qpAxUIARUAAAAAGAElAADIQj0AgKJDeAE=&rs=AOn4CLAsTYjpnwbSlY81nXyJ8KpFlM5P0Q" alt="Soạn văn tuyên ngôn độc lập phần 1 ngắn nhất năm 2024"></a> </div> <div class="media-body"> <h5 class="mb-2 fw-medium"><a href="/soan-van-tuyen-ngon-doc-lap-phan-1-ngan-nhat-nam-2024">Soạn văn tuyên ngôn độc lập phần 1 ngắn nhất năm 2024</a></h5> <p class="mb-2 truncate lh-20 fs-15"></p> <div class="media media-card questionTags user-media px-0 border-bottom-0 pb-0"> <div class="tags"> <a href="/tags/mẹo hay" class="tag-link">mẹo hay</a> <a href="/tags/Soạn văn 12" class="tag-link">Soạn văn 12</a> </div> </div> </div> </div><!-- end media --> <div class="media media-card rounded-0 shadow-none mb-0 bg-transparent py-4 px-0 border-bottom border-bottom-gray"> <div class="media-image"> <a href="/bo-de-thi-hoa-thpt-quoc-gia-2023-thay-phi-nam-2024"><img src="/dist/images/waiting.svg" width="200px" height="100px" data-orgimg="https://i.ytimg.com/vi/STwCmAEZNk4/hq720.jpg?sqp=-oaymwEXCNAFEJQDSFryq4qpAwkIARUAAIhCGAE=&rs=AOn4CLBPh2oqlM5pQms24TFxyZ_KnHbOsQ" alt="Bộ đề thi hóa thpt quốc gia 2023 thầy phi năm 2024"></a> </div> <div class="media-body"> <h5 class="mb-2 fw-medium"><a href="/bo-de-thi-hoa-thpt-quoc-gia-2023-thay-phi-nam-2024">Bộ đề thi hóa thpt quốc gia 2023 thầy phi năm 2024</a></h5> <p class="mb-2 truncate lh-20 fs-15"></p> <div class="media media-card questionTags user-media px-0 border-bottom-0 pb-0"> <div class="tags"> <a href="/tags/mẹo hay" class="tag-link">mẹo hay</a> </div> </div> </div> </div><!-- end media --> <div class="media media-card rounded-0 shadow-none mb-0 bg-transparent py-4 px-0 border-bottom border-bottom-gray"> <div class="media-image"> <a href="/bai-tap-the-duc-cua-bo-y-te-nam-2024"><img src="/dist/images/waiting.svg" width="200px" height="100px" data-orgimg="https://i.ytimg.com/vi/g8JmytwuN4U/hqdefault.jpg?sqp=-oaymwEjCOADEI4CSFryq4qpAxUIARUAAAAAGAElAADIQj0AgKJDeAE=&rs=AOn4CLANe9AXmAUgHF7Fx3QpAiZBgReR7g" alt="Bài tập thể dục của bộ y tế năm 2024"></a> </div> <div class="media-body"> <h5 class="mb-2 fw-medium"><a href="/bai-tap-the-duc-cua-bo-y-te-nam-2024">Bài tập thể dục của bộ y tế năm 2024</a></h5> <p class="mb-2 truncate lh-20 fs-15"></p> <div class="media media-card questionTags user-media px-0 border-bottom-0 pb-0"> <div class="tags"> <a href="/tags/mẹo hay" class="tag-link">mẹo hay</a> <a href="/tags/Khỏe Đẹp" class="tag-link">Khỏe Đẹp</a> <a href="/tags/Thể dục" class="tag-link">Thể dục</a> <a href="/tags/Bài tập" class="tag-link">Bài tập</a> </div> </div> </div> </div><!-- end media --> <div class="media media-card rounded-0 shadow-none mb-0 bg-transparent py-4 px-0 border-bottom border-bottom-gray"> <div class="media-image"> <a href="/cach-viet-phuong-trinh-phan-ung-hoa-hoc-8-nam-2024"><img src="/dist/images/waiting.svg" width="200px" height="100px" data-orgimg="https://i.ytimg.com/vi/1SCaymf-8vI/hqdefault.jpg?sqp=-oaymwEjCOADEI4CSFryq4qpAxUIARUAAAAAGAElAADIQj0AgKJDeAE=&rs=AOn4CLAuH4sLhB2lykbI81XwaxQf-S5qdA" alt="Cách viết phương trình phản ứng hóa học 8 năm 2024"></a> </div> <div class="media-body"> <h5 class="mb-2 fw-medium"><a href="/cach-viet-phuong-trinh-phan-ung-hoa-hoc-8-nam-2024">Cách viết phương trình phản ứng hóa học 8 năm 2024</a></h5> <p class="mb-2 truncate lh-20 fs-15"></p> <div class="media media-card questionTags user-media px-0 border-bottom-0 pb-0"> <div class="tags"> <a href="/tags/mẹo hay" class="tag-link">mẹo hay</a> <a href="/tags/Mẹo Hay" class="tag-link">Mẹo Hay</a> <a href="/tags/Cách" class="tag-link">Cách</a> <a href="/tags/Học Tốt" class="tag-link">Học Tốt</a> <a href="/tags/Học" class="tag-link">Học</a> <a href="/tags/Phương trình" class="tag-link">Phương trình</a> </div> </div> </div> </div><!-- end media --> <div class="media media-card rounded-0 shadow-none mb-0 bg-transparent py-4 px-0 border-bottom border-bottom-gray"> <div class="media-image"> <a href="/chuyen-mang-giu-so-sang-mobi-dung-goi-cuoc-nao-nam-2024"><img src="/dist/images/waiting.svg" width="200px" height="100px" data-orgimg="https://i.ytimg.com/vi/yqy1MPGO0bc/hqdefault.jpg?sqp=-oaymwE9COADEI4CSFryq4qpAy8IARUAAAAAGAElAADIQj0AgKJDeAHwAQH4AYwCgALgA4oCDAgAEAEYfyA8KDowDw==&rs=AOn4CLBIS9ZPyyGqHuNbsvaO0hn1BKgi2g" alt="Chuyển mạng giữ số sang mobi dùng gói cước nào năm 2024"></a> </div> <div class="media-body"> <h5 class="mb-2 fw-medium"><a href="/chuyen-mang-giu-so-sang-mobi-dung-goi-cuoc-nao-nam-2024">Chuyển mạng giữ số sang mobi dùng gói cước nào năm 2024</a></h5> <p class="mb-2 truncate lh-20 fs-15"></p> <div class="media media-card questionTags user-media px-0 border-bottom-0 pb-0"> <div class="tags"> <a href="/tags/mẹo hay" class="tag-link">mẹo hay</a> </div> </div> </div> </div><!-- end media --> <div class="media media-card rounded-0 shadow-none mb-0 bg-transparent py-4 px-0 border-bottom border-bottom-gray"> <div class="media-image"> <a href="/loi-anh-cho-man-hinh-lap-top-bi-mat-nam-2024"><img src="/dist/images/waiting.svg" width="200px" height="100px" data-orgimg="https://i.ytimg.com/vi/MXU74Ms01DI/hq720.jpg?sqp=-oaymwEXCNAFEJQDSFryq4qpAwkIARUAAIhCGAE=&rs=AOn4CLB0YTVCRYQHigm_Eflx1RRVSBlgmA" alt="Lỗi ảnh chờ màn hình lap top bị mất năm 2024"></a> </div> <div class="media-body"> <h5 class="mb-2 fw-medium"><a href="/loi-anh-cho-man-hinh-lap-top-bi-mat-nam-2024">Lỗi ảnh chờ màn hình lap top bị mất năm 2024</a></h5> <p class="mb-2 truncate lh-20 fs-15"></p> <div class="media media-card questionTags user-media px-0 border-bottom-0 pb-0"> <div class="tags"> <a href="/tags/mẹo hay" class="tag-link">mẹo hay</a> <a href="/tags/Top List" class="tag-link">Top List</a> <a href="/tags/Top" class="tag-link">Top</a> <a href="/tags/Công Nghệ" class="tag-link">Công Nghệ</a> <a href="/tags/Màn hình" class="tag-link">Màn hình</a> </div> </div> </div> </div><!-- end media --> <div class="media media-card rounded-0 shadow-none mb-0 bg-transparent py-4 px-0 border-bottom border-bottom-gray"> <div class="media-image"> <a href="/bai-tap-the-duc-chua-benh-cho-nguoi-gia-nam-2024"><img src="/dist/images/waiting.svg" width="200px" height="100px" data-orgimg="https://i.ytimg.com/vi/SSpaJL3N5hM/hq720.jpg?sqp=-oaymwEXCNAFEJQDSFryq4qpAwkIARUAAIhCGAE=&rs=AOn4CLCBhDouFW2OF6q_hdkw8DixR-dQHQ" alt="Bài tập thể dục chữa bệnh cho người già năm 2024"></a> </div> <div class="media-body"> <h5 class="mb-2 fw-medium"><a href="/bai-tap-the-duc-chua-benh-cho-nguoi-gia-nam-2024">Bài tập thể dục chữa bệnh cho người già năm 2024</a></h5> <p class="mb-2 truncate lh-20 fs-15"></p> <div class="media media-card questionTags user-media px-0 border-bottom-0 pb-0"> <div class="tags"> <a href="/tags/mẹo hay" class="tag-link">mẹo hay</a> <a href="/tags/Khỏe Đẹp" class="tag-link">Khỏe Đẹp</a> <a href="/tags/Thể dục" class="tag-link">Thể dục</a> <a href="/tags/Bài tập" class="tag-link">Bài tập</a> </div> </div> </div> </div><!-- end media --> </div> </div></div> </div> </div> </div><!-- end question-main-bar --> </div><!-- end col-lg-9 --> <div class="postContentRight"> <div class="sidebar"> <div class="ad-card"> <h4 class="text-gray text-uppercase fs-13 pb-3 text-center">Quảng Cáo</h4> <div class="mb-4 mx-auto" style="text-align:center"> <ins class="adsbygoogle" style="display:block" data-ad-client="ca-pub-4987931798153631" data-ad-slot="8742637402" data-ad-format="auto" data-full-width-responsive="true"> </ins> <script> (adsbygoogle = window.adsbygoogle || []).push({}); </script> </div> </div> <div class="card card-item"> <div class="card-body"> <h3 class="fs-17 pb-3">Có thể bạn quan tâm</h3> <div class="divider"><span></span></div> <div class="sidebar-questions pt-3"> <div class="media media-card media--card media--card-2"> <div class="media-body"> <h5><a href="https://biquyetxaynha.com/cac-quyet-dinh-moi-ve-ke-toan-thue-2023-nam-2024">Các quyết định mới về kế toán thuế 2023 năm 2024</a></h5> <small class="meta"> <span class="pr-1">1 ngày trước</span> <span class="pr-1">. bởi</span> <a href="https://biquyetxaynha.com/author/BarbarousVegetation" class="author">BarbarousVegetation</a> </small> </div> </div><!-- end media --> <div class="media media-card media--card media--card-2"> <div class="media-body"> <h5><a href="https://biquyetxaynha.com/bai-tap-dien-tu-cong-suat-co-loi-giai-nam-2024">Bài tập điện tử công suất có lời giải năm 2024</a></h5> <small class="meta"> <span class="pr-1">1 ngày trước</span> <span class="pr-1">. bởi</span> <a href="https://biquyetxaynha.com/author/CounterproductiveOutfield" class="author">CounterproductiveOutfield</a> </small> </div> </div><!-- end media --> <div class="media media-card media--card media--card-2"> <div class="media-body"> <h5><a href="https://biquyetxaynha.com/cong-van-so-937-bhxh-nga-y-11-05-2023-nam-2024">Công văn sô 937 bhxh nga y 11 05 2023 năm 2024</a></h5> <small class="meta"> <span class="pr-1">1 ngày trước</span> <span class="pr-1">. bởi</span> <a href="https://biquyetxaynha.com/author/ThroughVaccination" class="author">ThroughVaccination</a> </small> </div> </div><!-- end media --> <div class="media media-card media--card media--card-2"> <div class="media-body"> <h5><a href="https://biquyetxaynha.com/top-10-mon-an-kinh-di-nhat-hanh-tinh-nam-2024">Top 10 món ăn kinh dị nhất hành tinh năm 2024</a></h5> <small class="meta"> <span class="pr-1">1 ngày trước</span> <span class="pr-1">. bởi</span> <a href="https://biquyetxaynha.com/author/CherishedMisunderstanding" class="author">CherishedMisunderstanding</a> </small> </div> </div><!-- end media --> <div class="media media-card media--card media--card-2"> <div class="media-body"> <h5><a href="https://biquyetxaynha.com/loi-khung-dich-vu-google-play-da-dung-nam-2024">Lỗi khung dịch vụ google play đã dừng năm 2024</a></h5> <small class="meta"> <span class="pr-1">1 ngày trước</span> <span class="pr-1">. bởi</span> <a href="https://biquyetxaynha.com/author/BurningIntermission" class="author">BurningIntermission</a> </small> </div> </div><!-- end media --> <div class="media media-card media--card media--card-2"> <div class="media-body"> <h5><a href="https://biquyetxaynha.com/bai-tap-ly-thuyet-amin-amino-axit-protein-kho-nam-2024">Bài tập lý thuyết amin amino axit protein khó năm 2024</a></h5> <small class="meta"> <span class="pr-1">1 ngày trước</span> <span class="pr-1">. bởi</span> <a href="https://biquyetxaynha.com/author/HugeWindfall" class="author">HugeWindfall</a> </small> </div> </div><!-- end media --> <div class="media media-card media--card media--card-2"> <div class="media-body"> <h5><a href="https://biquyetxaynha.com/loi-khong-mang-theo-giay-to-xe-oto-nam-2024">Lỗi không mang theo giấy tờ xe oto năm 2024</a></h5> <small class="meta"> <span class="pr-1">1 ngày trước</span> <span class="pr-1">. bởi</span> <a href="https://biquyetxaynha.com/author/TackyVulnerability" class="author">TackyVulnerability</a> </small> </div> </div><!-- end media --> <div class="media media-card media--card media--card-2"> <div class="media-body"> <h5><a href="https://biquyetxaynha.com/lam-the-nao-de-choi-pubg-mobile-muot-nam-2024">Làm thế nào để chơi pubg mobile mượt năm 2024</a></h5> <small class="meta"> <span class="pr-1">1 ngày trước</span> <span class="pr-1">. bởi</span> <a href="https://biquyetxaynha.com/author/InformedMayer" class="author">InformedMayer</a> </small> </div> </div><!-- end media --> <div class="media media-card media--card media--card-2"> <div class="media-body"> <h5><a href="https://biquyetxaynha.com/van-phong-luat-su-phung-anh-tuan-dong-su-nam-2024">Văn phòng luật sư phùng anh tuấn & đồng sự năm 2024</a></h5> <small class="meta"> <span class="pr-1">1 ngày trước</span> <span class="pr-1">. bởi</span> <a href="https://biquyetxaynha.com/author/NamedWitchcraft" class="author">NamedWitchcraft</a> </small> </div> </div><!-- end media --> <div class="media media-card media--card media--card-2"> <div class="media-body"> <h5><a href="https://biquyetxaynha.com/lam-truong-09-loi-lam-trong-tinh-yeu-nam-2024">Lam trường 09 lỗi lầm trong tình yêu năm 2024</a></h5> <small class="meta"> <span class="pr-1">1 ngày trước</span> <span class="pr-1">. bởi</span> <a href="https://biquyetxaynha.com/author/ReservedIteration" class="author">ReservedIteration</a> </small> </div> </div><!-- end media --> </div><!-- end sidebar-questions --> </div> </div><!-- end card --> <div class="card card-item cardTopList"> <div class="card-body"> <h3 class="fs-17 pb-3">Toplist được quan tâm</h3> <div class="divider"><span></span></div> <div class="sidebar-questions pt-3"> <div class="media media-card media--card media--card-2"> <div class="topListNum">#1</div> <div class="media-body"> <h5><a href="https://biquyetxaynha.com/toplist-top-9-tap-ban-do-lop-8-bai-31-2023">Top 9 tập bản đồ lớp 8 bài 31 2023</a></h5> <small class="meta text-right">6 tháng trước</small> </div> </div><!-- end media --> <div class="media media-card media--card media--card-2"> <div class="topListNum">#2</div> <div class="media-body"> <h5><a href="https://biquyetxaynha.com/toplist-top-6-ket-qua-thi-hsg-da-nang-2022-2023">Top 6 kết quả thi hsg đà nẵng 2022 2023</a></h5> <small class="meta text-right">6 tháng trước</small> </div> </div><!-- end media --> <div class="media media-card media--card media--card-2"> <div class="topListNum">#3</div> <div class="media-body"> <h5><a href="https://biquyetxaynha.com/toplist-top-9-tu-nhua-dai-loan-4-canh-3d-2023">Top 9 tủ nhựa đài loan 4 cánh 3d 2023</a></h5> <small class="meta text-right">6 tháng trước</small> </div> </div><!-- end media --> <div class="media media-card media--card media--card-2"> <div class="topListNum">#4</div> <div class="media-body"> <h5><a href="https://biquyetxaynha.com/toplist-top-9-chat-khi-co-the-lam-mat-mau-dung-dich-nuoc-brom-la-a-so2-b-co2-c-o2-d-hcl-2023">Top 9 chất khí có thể làm mất màu dung dịch nước brom là: a. so2. b. co2. c. o2. d. hcl. 2023</a></h5> <small class="meta text-right">6 tháng trước</small> </div> </div><!-- end media --> <div class="media media-card media--card media--card-2"> <div class="topListNum">#5</div> <div class="media-body"> <h5><a href="https://biquyetxaynha.com/toplist-top-8-tim-viec-lam-tien-phay-bao-q7-2023">Top 8 tìm việc làm tiện, phay bảo q7 2023</a></h5> <small class="meta text-right">6 tháng trước</small> </div> </div><!-- end media --> <div class="media media-card media--card media--card-2"> <div class="topListNum">#6</div> <div class="media-body"> <h5><a href="https://biquyetxaynha.com/toplist-top-3-toi-xuyen-thanh-tieu-kieu-the-cua-lao-dai-phan-2-2023">Top 3 tôi xuyên thành tiểu kiều the của lão đại phản 2 2023</a></h5> <small class="meta text-right">6 tháng trước</small> </div> </div><!-- end media --> <div class="media media-card media--card media--card-2"> <div class="topListNum">#7</div> <div class="media-body"> <h5><a href="https://biquyetxaynha.com/toplist-top-9-doi-moi-phong-cach-thai-do-phuc-vu-cua-can-bo-y-te-huong-toi-su-hai-long-cua-nguoi-benh-2023">Top 9 đổi mới phong cách, thái độ phục vụ của cán bộ y tế hướng tới sự hài lòng của người bệnh 2023</a></h5> <small class="meta text-right">6 tháng trước</small> </div> </div><!-- end media --> <div class="media media-card media--card media--card-2"> <div class="topListNum">#8</div> <div class="media-body"> <h5><a href="https://biquyetxaynha.com/toplist-top-2-bai-the-duc-phat-trien-chung-lop-6-2022-2023">Top 2 bài the dục phát triển chung lớp 6 2022 2023</a></h5> <small class="meta text-right">6 tháng trước</small> </div> </div><!-- end media --> <div class="media media-card media--card media--card-2"> <div class="topListNum">#9</div> <div class="media-body"> <h5><a href="https://biquyetxaynha.com/toplist-top-3-bai-giang-vu-dieu-sac-mau-lop-4-2023">Top 3 bài giảng vũ điệu sắc màu (lớp 4) 2023</a></h5> <small class="meta text-right">6 tháng trước</small> </div> </div><!-- end media --> </div><!-- end sidebar-questions --> </div> </div><!-- end card --> <div class="ad-card"> <h4 class="text-gray text-uppercase fs-14 pb-3 pb-3 text-center">Quảng cáo</h4> <div class="mb-4 mx-auto"> <ins class="adsbygoogle" style="display:inline-block;width:300px;height:600px" data-ad-client="ca-pub-" data-ad-slot="" data-ad-format="auto" data-full-width-responsive="true"></ins> <script> (adsbygoogle = window.adsbygoogle || []).push({}); </script> </div> </div> <div class="card card-item"> <div class="card-body"> <h3 class="fs-17 pb-3">Xem Nhiều</h3> <div class="divider"><span></span></div> <div class="sidebar-questions pt-3"> <div class="media media-card media--card media--card-2"> <div class="media-body"> <h5><a href="https://biquyetxaynha.com/baan-mieng-dan-apple-watch-le-van-sy-nam-2024">Baán miếng dán apple watch le văn sỹ năm 2024</a></h5> <small class="meta"> <span class="pr-1">3 ngày trước</span> <span class="pr-1">. bởi</span> <a href="https://biquyetxaynha.com/author/DisappointedProceedings" class="author">DisappointedProceedings</a> </small> </div> </div><!-- end media --> <div class="media media-card media--card media--card-2"> <div class="media-body"> <h5><a href="https://biquyetxaynha.com/vo-chong-sinh-nam-1988-nen-sinh-con-nam-nao-nam-2024">Vợ chồng sinh năm 1988 nên sinh con năm nào năm 2024</a></h5> <small class="meta"> <span class="pr-1">1 tuần trước</span> <span class="pr-1">. bởi</span> <a href="https://biquyetxaynha.com/author/InanimateFetish" class="author">InanimateFetish</a> </small> </div> </div><!-- end media --> <div class="media media-card media--card media--card-2"> <div class="media-body"> <h5><a href="https://biquyetxaynha.com/top-tuong-di-mid-xanh-ganh-ca-team-nam-2024">Top tướng đi mid xanh gánh cả team năm 2024</a></h5> <small class="meta"> <span class="pr-1">3 ngày trước</span> <span class="pr-1">. bởi</span> <a href="https://biquyetxaynha.com/author/DistortedAuspices" class="author">DistortedAuspices</a> </small> </div> </div><!-- end media --> <div class="media media-card media--card media--card-2"> <div class="media-body"> <h5><a href="https://biquyetxaynha.com/choi-lau-nha-tieng-trung-la-gi-nam-2024">Chổi lau nhà tiếng trung là gì năm 2024</a></h5> <small class="meta"> <span class="pr-1">1 tuần trước</span> <span class="pr-1">. bởi</span> <a href="https://biquyetxaynha.com/author/NumbScooter" class="author">NumbScooter</a> </small> </div> </div><!-- end media --> <div class="media media-card media--card media--card-2"> <div class="media-body"> <h5><a href="https://biquyetxaynha.com/de-thi-toan-lop-2-hoc-ky-i-nam-2024">Đề thi toán lớp 2 học kỳ i năm 2024</a></h5> <small class="meta"> <span class="pr-1">1 tuần trước</span> <span class="pr-1">. bởi</span> <a href="https://biquyetxaynha.com/author/ThreateningThoroughfare" class="author">ThreateningThoroughfare</a> </small> </div> </div><!-- end media --> <div class="media media-card media--card media--card-2"> <div class="media-body"> <h5><a href="https://biquyetxaynha.com/loi-danh-chu-o-phan-mem-ke-khai-thue-386-nam-2024">Lỗi đánh chữ ở phần mềm kê khai thuế 3.8.6 năm 2024</a></h5> <small class="meta"> <span class="pr-1">1 tuần trước</span> <span class="pr-1">. bởi</span> <a href="https://biquyetxaynha.com/author/StarvingPessimism" class="author">StarvingPessimism</a> </small> </div> </div><!-- end media --> <div class="media media-card media--card media--card-2"> <div class="media-body"> <h5><a href="https://biquyetxaynha.com/cac-dang-bai-tap-nang-cao-dai-9-ki-2-nam-2024">Các dang bài tập nâng cao đại 9 kì 2 năm 2024</a></h5> <small class="meta"> <span class="pr-1">3 ngày trước</span> <span class="pr-1">. bởi</span> <a href="https://biquyetxaynha.com/author/DisdainfulExtinction" class="author">DisdainfulExtinction</a> </small> </div> </div><!-- end media --> <div class="media media-card media--card media--card-2"> <div class="media-body"> <h5><a href="https://biquyetxaynha.com/top-xe-47-cho-xin-nhat-ha-noi-nam-2024">Top xe 47 chỗ xịn nhất hà nội năm 2024</a></h5> <small class="meta"> <span class="pr-1">1 ngày trước</span> <span class="pr-1">. bởi</span> <a href="https://biquyetxaynha.com/author/ThermalDealing" class="author">ThermalDealing</a> </small> </div> </div><!-- end media --> <div class="media media-card media--card media--card-2"> <div class="media-body"> <h5><a href="https://biquyetxaynha.com/nhung-kien-thuc-co-ban-cua-hoa-hoc-lop-8-nam-2024">Những kiến thức cơ bản của hóa học lớp 8 năm 2024</a></h5> <small class="meta"> <span class="pr-1">1 tuần trước</span> <span class="pr-1">. bởi</span> <a href="https://biquyetxaynha.com/author/UnderdevelopedSalvation" class="author">UnderdevelopedSalvation</a> </small> </div> </div><!-- end media --> <div class="media media-card media--card media--card-2"> <div class="media-body"> <h5><a href="https://biquyetxaynha.com/top-phim-thoi-chien-trung-quoc-hay-nhat-nam-2024">Top phim thời chiến trung quốc hay nhất năm 2024</a></h5> <small class="meta"> <span class="pr-1">1 tuần trước</span> <span class="pr-1">. bởi</span> <a href="https://biquyetxaynha.com/author/UnhappyAirtime" class="author">UnhappyAirtime</a> </small> </div> </div><!-- end media --> </div><!-- end sidebar-questions --> </div> </div><!-- end card --> <div class="ad-card"> <h4 class="text-gray text-uppercase fs-14 pb-3 pb-3 text-center">Quảng cáo</h4> <div class="mb-4 mx-auto" style=" text-align: center"> <div id='div-gpt-ad-1657246837997-0' style='min-width: 300px; min-height: 600px;'> <script> googletag.cmd.push(function() { googletag.display('div-gpt-ad-1657246837997-0'); }); </script> </div> </div> </div> </div><!-- end sidebar --> </div><!-- end col-lg-3 --> </div><!-- end row --> </div><!-- end container --> </section><!-- end question-area --> <!-- ================================ END QUESTION AREA ================================= --> <script>var questionId ='print-html-code-in-php'</script> <script>var postTime ='2022-09-29T08:38:32.853Z'</script> <script>var siteDomain ='biquyetxaynha.com'</script> <script type="text/javascript" src="https://biquyetxaynha.com/dist/js/pages/comment.js"></script> <!-- ================================ END FOOTER AREA ================================= --> <section class="footer-area pt-80px bg-dark position-relative"> <span class="vertical-bar-shape vertical-bar-shape-1"></span> <span class="vertical-bar-shape vertical-bar-shape-2"></span> <span class="vertical-bar-shape vertical-bar-shape-3"></span> <span class="vertical-bar-shape vertical-bar-shape-4"></span> <div class="container"> <div class="row"> <div class="col-lg-3 responsive-column-half"> <div class="footer-item"> <h3 class="fs-18 fw-bold pb-2 text-white">Chúng tôi</h3> <ul class="generic-list-item generic-list-item-hover-underline pt-3 generic-list-item-white"> <li><a href="/about.html">Giới thiệu</a></li> <li><a href="/contact.html">Liên hệ</a></li> <li><a href="/contact.html">Tuyển dụng</a></li> <li><a href="/contact.html">Quảng cáo</a></li> </ul> </div><!-- end footer-item --> </div><!-- end col-lg-3 --> <div class="col-lg-3 responsive-column-half"> <div class="footer-item"> <h3 class="fs-18 fw-bold pb-2 text-white">Điều khoản</h3> <ul class="generic-list-item generic-list-item-hover-underline pt-3 generic-list-item-white"> <li><a href="/privacy-statement.html">Điều khoản hoạt động</a></li> <li><a href="/terms-and-conditions.html">Điều kiện tham gia</a></li> <li><a href="/privacy-statement.html">Quy định cookie</a></li> </ul> </div><!-- end footer-item --> </div><!-- end col-lg-3 --> <div class="col-lg-3 responsive-column-half"> <div class="footer-item"> <h3 class="fs-18 fw-bold pb-2 text-white">Trợ giúp</h3> <ul class="generic-list-item generic-list-item-hover-underline pt-3 generic-list-item-white"> <li><a href="/contact.html">Hướng dẫn</a></li> <li><a href="/contact.html">Loại bỏ câu hỏi</a></li> <li><a href="/contact.html">Liên hệ</a></li> </ul> </div><!-- end footer-item --> </div><!-- end col-lg-3 --> <div class="col-lg-3 responsive-column-half"> <div class="footer-item"> <h3 class="fs-18 fw-bold pb-2 text-white">Mạng xã hội</h3> <ul class="generic-list-item generic-list-item-hover-underline pt-3 generic-list-item-white"> <li><a href="#"><i class="fab fa-facebook-f mr-1"></i> Facebook</a></li> <li><a href="#"><i class="fab fa-twitter mr-1"></i> Twitter</a></li> <li><a href="#"><i class="fab fa-linkedin mr-1"></i> LinkedIn</a></li> <li><a href="#"><i class="fab fa-instagram mr-1"></i> Instagram</a></li> </ul> </div><!-- end footer-item --> </div><!-- end col-lg-3 --> </div><!-- end row --> </div><!-- end container --> <hr class="border-top-gray my-5"> <div class="container"> <div class="row align-items-center pb-4 copyright-wrap"> <div class="col-6"> <a href="//www.dmca.com/Protection/Status.aspx?ID=33e5dca6-f8c5-4c6f-b8e6-a247229d2953" title="DMCA.com Protection Status" class="dmca-badge"> <img src ="https://images.dmca.com/Badges/dmca_protected_sml_120am.png?ID=33e5dca6-f8c5-4c6f-b8e6-a247229d2953" width="123px" height="21px" alt="DMCA.com Protection Status" /></a> <script src="https://images.dmca.com/Badges/DMCABadgeHelper.min.js"> </script> </div> <!-- end col-lg-6 --><div class="col-6"> <div class="copyright-desc text-right fs-14"> <div>Bản quyền &copy; 2021 <a href="https://biquyetxaynha.com">Xây Nhà</a> Inc.</div> </div> </div><!-- end col-lg-6 --> </div><!-- end row --> </div><!-- end container --> </section><!-- end footer-area --> <!-- ================================ END FOOTER AREA ================================= --><script> $( document ).ready(function() { setTimeout(showMoreButton, 3000); function showMoreButton(){ let minheight = 1000; minheight = parseInt($("#entryContent").innerHeight())/3; $("#entryContent").css('min-height', minheight).css('max-height', minheight).css('overflow', 'hidden'); $("#readmore_content").click(function(){ $("#entryContent").css('min-height', '').css('max-height', '').css('overflow', ''); $(".readmore_content_exists").css('display', 'none'); }) } }); </script> <!-- template js files --> <!-- start back to top --> <div id="back-to-top" data-toggle="tooltip" data-placement="top" title="Lên đầu trang"> <img alt="" src="/dist/images/svg/arrow-up_20.svg"> </div> <!-- end back to top --> <script src="https://biquyetxaynha.com/dist/js/bootstrap.bundle.min.js"></script> <script src="https://biquyetxaynha.com/dist/js/moment.js"></script> <script src="https://biquyetxaynha.com/dist/js/read-more.min.js"></script> <script src="https://biquyetxaynha.com/dist/js/main.js?v=6"></script> <!-- Google Tag Manager (noscript) --> <script type="text/javascript"> (function(c,l,a,r,i,t,y){ c[a]=c[a]||function(){(c[a].q=c[a].q||[]).push(arguments)}; t=l.createElement(r);t.async=1;t.src="https://www.clarity.ms/tag/"+i; y=l.getElementsByTagName(r)[0];y.parentNode.insertBefore(t,y); })(window, document, "clarity", "script", "jxuz46z39u"); </script> </body> </html> <script src="/cdn-cgi/scripts/7d0fa10a/cloudflare-static/rocket-loader.min.js" data-cf-settings="ec7e9f738ef33545f9167763-|49" defer></script>