Hướng dẫn dùng convertto-html JavaScript

Skip to main content

This browser is no longer supported.

Upgrade to Microsoft Edge to take advantage of the latest features, security updates, and technical support.

ConvertTo-Html

  • Reference

Converts .NET objects into HTML that can be displayed in a Web browser.

In this article

Syntax

ConvertTo-Html
              [-InputObject ]
              [[-Property] ]
              [[-Body] ]
              [[-Head] ]
              [[-Title] ]
              [-As ]
              [-CssUri ]
              [-PostContent ]
              [-PreContent ]
              [-Meta ]
              [-Charset ]
              [-Transitional]
              []
ConvertTo-Html
              [-InputObject ]
              [[-Property] ]
              [-As ]
              [-Fragment]
              [-PostContent ]
              [-PreContent ]
              []

Description

The ConvertTo-Html cmdlet converts .NET objects into HTML that can be displayed in a Web browser. You can use this cmdlet to display the output of a command in a Web page.

You can use the parameters of ConvertTo-Html to select object properties, to specify a table or list format, to specify the HTML page title, to add text before and after the object, and to return only the table or list fragment, instead of a strict DTD page.

When you submit multiple objects to ConvertTo-Html, PowerShell creates the table (or list) based on the properties of the first object that you submit. If the remaining objects do not have one of the specified properties, the property value of that object is an empty cell. If the remaining objects have additional properties, those property values are not included in the file.

Examples

Example 1: Create a web page to display the date

ConvertTo-Html -InputObject (Get-Date)

This command creates an HTML page that displays the properties of the current date. It uses the InputObject parameter to submit the results of a Get-Date command to the ConvertTo-Html cmdlet.

Example 2: Create a web page to display PowerShell aliases

Get-Alias | ConvertTo-Html | Out-File aliases.htm
Invoke-Item aliases.htm

This command creates an HTML page that lists the PowerShell aliases in the current console.

The command uses the Get-Alias cmdlet to get the aliases. It uses the pipeline operator (|) to send the aliases to the ConvertTo-Html cmdlet, which creates the HTML page. The command also uses the Out-File cmdlet to send the HTML code to the aliases.htm file.

Example 3: Create a web page to display PowerShell events

Get-EventLog -LogName "Windows PowerShell" | ConvertTo-Html | Out-File pslog.htm

This command creates an HTML page called pslog.htm that displays the events in the Windows PowerShell event log on the local computer.

It uses the Get-EventLog cmdlet to get the events in the Windows PowerShell log and then uses the pipeline operator (|) to send the events to the ConvertTo-Html cmdlet. The command also uses the Out-File cmdlet to send the HTML code to the pslog.htm file.

The command also uses the Out-File cmdlet to send the HTML code to the pslog.htm file.

Example 4: Create a web page to display processes

Get-Process |
  ConvertTo-Html -Property Name, Path, Company -Title "Process Information" |
    Out-File proc.htm
Invoke-Item proc.htm

These commands create and open an HTML page that lists the name, path, and company of the processes on the local computer.

The first command uses the Get-Process cmdlet to get objects that represent the processes running on the computer. The command uses the pipeline operator (|) to send the process objects to the ConvertTo-Html cmdlet.

The command uses the Property parameter to select three properties of the process objects to be included in the table. The command uses the Title parameter to specify a title for the HTML page. The command also uses the Out-File cmdlet to send the resulting HTML to a file named Proc.htm.

The second command uses the Invoke-Item cmdlet to open the Proc.htm in the default browser.

Example 5: Create a web page to display service objects

Get-Service | ConvertTo-Html -CssUri "test.css"




HTML TABLE

...

This command creates an HTML page of the service objects that the Get-Service cmdlet returns. The command uses the CssUri parameter to specify a cascading style sheet for the HTML page.

The CssUri parameter adds an additional tag to the resulting HTML. The HREF attribute in the tag contains the name of the style sheet.

Example 6: Create a web page to display service objects

Get-Service | ConvertTo-Html -As LIST | Out-File services.htm

This command creates an HTML page of the service objects that the Get-Service cmdlet returns. The command uses the As parameter to specify a list format. The cmdlet Out-File sends the resulting HTML to the Services.htm file.

Example 7: Create a web table for the current date

Get-Date | ConvertTo-Html -Fragment

...
DisplayHintDateTimeDateDayDayOfWeekDayOfYearHour KindMillisecondMinuteMonthSecondTicksTimeOfDayYear
DateTimeMonday, May 05, 2008 10:40:04 AM5/5/2008 12:00:00 AM5Monday 12610Local123405463345580804123721310:40:04.12 372132008

This command uses ConvertTo-Html to generate an HTML table of the current date. The command uses the Get-Date cmdlet to get the current date. It uses a pipeline operator (|) to send the results to the ConvertTo-Html cmdlet.

The ConvertTo-Html command includes the Fragment parameter, which limits the output to an HTML table. As a result, the other elements of an HTML page, such as the and tags, are omitted.

Example 8: Create a web page to display PowerShell events

Get-EventLog -Log "Windows PowerShell" | ConvertTo-Html -Property id, level, task

This command uses the Get-EventLog cmdlet to get events from the Windows PowerShell event log.

It uses a pipeline operator (|) to send the events to the ConvertTo-Html cmdlet, which converts the events to HTML format.

The ConvertTo-Html command uses the Property parameter to select only the ID, Level, and Task properties of the event.

Example 9: Create a web page to display specified services

$htmlParams = @{
  Title = "Windows Services: Server01"
  Body = Get-Date
  PreContent = "

Generated by Corporate IT

" PostContent = "For details, contact Corporate IT." } Get-Service A* | ConvertTo-Html @htmlParams | Out-File Services.htm Invoke-Item Services.htm

This command creates and opens a Web page that displays the services on the computer that begin with A. It uses the Title, Body, PreContent, and PostContent parameters of ConvertTo-Html to customize the output.

The first part of the command uses the Get-Service cmdlet to get the services on the computer that begin with A. The command uses a pipeline operator (|) to send the results to the ConvertTo-Html cmdlet. The command also uses the Out-File cmdlet to send the output to the Services.htm file.

A semicolon (;) ends the first command and starts a second command, which uses the Invoke-Item cmdlet to open the Services.htm file in the default browser.

Example 10: Set the Meta properties and Charset of the HTML

Get-Service | ConvertTo-HTML -Meta @{
  refresh=10
  author="Author's Name"
  keywords="PowerShell, HTML, ConvertTo-HTML"
} -Charset "UTF-8"

This command creates the HTML for a webpage with the meta tags for refresh, author, and keywords. The charset for the page is set to UTF-8

Example 11: Set the HTML to XHTML Transitional DTD

Get-Service | ConvertTo-HTML -Transitional

This command sets the DOCTYPE of the returned HTML to XHTML Transitional DTD

Parameters

Determines whether the object is formatted as a table or a list. Valid values are Table and List. The default value is Table.

The Table value generates an HTML table that resembles the PowerShell table format. The header row displays the property names. Each table row represents an object and displays the object's values for each property.

The List value generates a two-column HTML table for each object that resembles the PowerShell list format. The first column displays the property name. The second column displays the property value.

Type: String
Accepted values: Table, List
Position: Named
Default value: None
Accept pipeline input: False
Accept wildcard characters: False

Specifies the text to add after the opening tag. By default, there is no text in that position.

Type: String[]
Position: 3
Default value: None
Accept pipeline input: False
Accept wildcard characters: False

Specifies text to add to the opening tag. By default, there is no text in that position.

This parameter was introduced in PowerShell 6.0.

Type: String
Position: Named
Default value: None
Accept pipeline input: False
Accept wildcard characters: False

Specifies the Uniform Resource Identifier (URI) of the cascading style sheet (CSS) that is applied to the HTML file. The URI is included in a style sheet link in the output.

Type: Uri
Aliases: cu, uri
Position: Named
Default value: None
Accept pipeline input: False
Accept wildcard characters: False

Generates only an HTML table. The , , </code>, and <code><BODY></code> tags are omitted.</p> <table><tr><td>Type: </td><td>SwitchParameter </td></tr><tr><td>Position: </td><td>Named </td></tr><tr><td>Default value: </td><td>None </td></tr><tr><td>Accept pipeline input: </td><td>False </td></tr><tr><td>Accept wildcard characters: </td><td>False </td></tr></table></p><p><p>Specifies the content of the <code><HEAD></code> tag. The default is <code><title\>HTML TABLE. If you use the Head parameter, the Title parameter is ignored.

Type: String[]
Position: 1
Default value: None
Accept pipeline input: False
Accept wildcard characters: False

Specifies the objects to be represented in HTML. Enter a variable that contains the objects or type a command or expression that gets the objects.

If you use this parameter to submit multiple objects, such as all of the services on a computer, ConvertTo-Html creates a table that displays the properties of a collection or of an array of objects. To create a table of the individual objects, use the pipeline operator to pipe the objects to ConvertTo-Html.

Type: PSObject
Position: Named
Default value: None
Accept pipeline input: True
Accept wildcard characters: False

Specifies text to add to the opening tag. By default, there is no text in that position.

This parameter was introduced in PowerShell 6.0.

Type: Hashtable
Position: Named
Default value: None
Accept pipeline input: False
Accept wildcard characters: False

Specifies text to add after the closing

tag. By default, there is no text in that position.

Type: String[]
Position: Named
Default value: None
Accept pipeline input: False
Accept wildcard characters: False

Specifies text to add before the opening

tag. By default, there is no text in that position.

Type: String[]
Position: Named
Default value: None
Accept pipeline input: False
Accept wildcard characters: False

Includes the specified properties of the objects in the HTML. The value of the Property parameter can be a new calculated property. The calculated property can be a script block or a hash table. Valid key-value pairs are:

  • Name (or label) - (added in PowerShell 6.x)
  • Expression - or

Type: Object[]
Position: 0
Default value: None
Accept pipeline input: False
Accept wildcard characters: False

Specifies a title for the HTML file, that is, the text that appears between the </code> tags.</p> <table><tr><td>Type: </td><td>String </td></tr><tr><td>Position: </td><td>2 </td></tr><tr><td>Default value: </td><td>None </td></tr><tr><td>Accept pipeline input: </td><td>False </td></tr><tr><td>Accept wildcard characters: </td><td>False </td></tr></table></p><p><p>Changes the <code>DOCTYPE</code> to <strong>XHTML Transitional DTD</strong>, Default <code>DOCTYPE</code> is <strong>XHTML Strict DTD</strong>.</p><p>This parameter was introduced in PowerShell 6.0.</p> <table><tr><td>Type: </td><td>SwitchParameter </td></tr><tr><td>Position: </td><td>Named </td></tr><tr><td>Default value: </td><td>None </td></tr><tr><td>Accept pipeline input: </td><td>False </td></tr><tr><td>Accept wildcard characters: </td><td>False </td></tr></table></p><h2>Inputs</h2><p><strong>PSObject</strong></p><p>You can pipe any .NET object to <code>ConvertTo-Html</code>.</p><h2>Outputs</h2><p><strong><span>System.String or System.Xml.XmlDocument</span></strong></p><p><code>ConvertTo-Html</code> returns series of strings that comprise valid HTML.</p><h2>Notes</h2><p>To use this cmdlet, pipe one or more objects to the cmdlet or use the <strong>InputObject</strong> parameter to specify the object. When the input consists of multiple objects, the output of these two methods is quite different.</p><ul><li><p>When you pipe multiple objects to a cmdlet, PowerShell sends the objects to the cmdlet one at a time. As a result, <code>ConvertTo-Html</code> creates a table that displays the individual objects. For example, if you pipe the processes on a computer to <code>ConvertTo-Html</code>, the resulting table displays all of the processes.</p></li><li><p>When you use the <strong>InputObject</strong> parameter to submit multiple objects, <code>ConvertTo-Html</code> receives these objects as a collection or as an array. As a result, it creates a table that displays the array and its properties, not the items in the array. For example, if you use <strong>InputObject</strong> to submit the processes on a computer to <code>ConvertTo-Html</code>, the resulting table displays an object array and its properties.</p><p>To comply with the XHTML Strict DTD, the <code>DOCTYPE</code> tag is modified accordingly:</p><p><code><!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "https://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"\></code></p></li></ul><ul><li>about_Calculated_Properties</li><li>ConvertTo-Csv </li><li>ConvertTo-Json</li><li>ConvertTo-Xml</li><li>Export-Clixml</li><li>Import-Clixml</li></ul></p><section><h2>Feedback</h2><p><p>Submit and view feedback for</p></section></p><div class='paramage'></div> <div class="contenBreak"></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/kG3CrALRdl8?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/javascript" class="tag-link">javascript</a> <a href="https://biquyetxaynha.com/tags/Js html-to-text" class="tag-link">Js html-to-text</a> <a href="https://biquyetxaynha.com/tags/ConvertTo Html" class="tag-link">ConvertTo Html</a> <a href="https://biquyetxaynha.com/tags/Out-File PowerShell" class="tag-link">Out-File PowerShell</a> <a href="https://biquyetxaynha.com/tags/Format Table" class="tag-link">Format Table</a> </div> </div> <div class="post-tools"> <button data-postid="huong-dan-dung-convertto-html-javascript" class="btn btn-answerModalBox"><img class="mr-1" alt="Hướng dẫn dùng convertto-html JavaScript" src="/dist/images/svg/messages_16.svg">Reply</button> <button data-postid="huong-dan-dung-convertto-html-javascript" data-vote="up" class="btn btn-doVote"><img class="mr-1" alt="Hướng dẫn dùng convertto-html JavaScript" src="/dist/images/svg/face-smile_16.svg">9</button> <button data-postid="huong-dan-dung-convertto-html-javascript" data-vote="down" class="btn btn-doVote"><img class="mr-1" alt="Hướng dẫn dùng convertto-html JavaScript" src="/dist/images/svg/poo_16.svg">0</button> <button class="btn"><img class="mr-1" alt="Hướng dẫn dùng convertto-html JavaScript" 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_huong-dan-dung-convertto-html-javascript" 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="/chuong-trinh-thi-dua-tieng-anh-la-gi-nam-2024"><img src="/dist/images/waiting.svg" width="200px" height="100px" data-orgimg="https://i.ytimg.com/vi/c91poavBHVc/hq720.jpg?sqp=-oaymwExCNAFEJQDSFryq4qpAyMIARUAAIhCGAHwAQH4Af4OgAK4CIoCDAgAEAEYZSBMKEgwDw==&rs=AOn4CLDmTktA5o5v0hP50dp23I1ZTfidsg" alt="Chương trình thi đua tiếng anh là gì năm 2024"></a> </div> <div class="media-body"> <h5 class="mb-2 fw-medium"><a href="/chuong-trinh-thi-dua-tieng-anh-la-gi-nam-2024">Chương trình thi đua tiếng anh là gì 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/là ai" class="tag-link">là ai</a> <a href="/tags/Hỏi Đáp" class="tag-link">Hỏi Đáp</a> <a href="/tags/Là gì" class="tag-link">Là gì</a> <a href="/tags/Học Tốt" class="tag-link">Học Tốt</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="/ca-si-manh-quynh-sinh-nam-bao-nhieu-nam-2024"><img src="/dist/images/waiting.svg" width="200px" height="100px" data-orgimg="https://i.ytimg.com/vi/pXZHNUioavI/hqdefault.jpg?sqp=-oaymwEjCOADEI4CSFryq4qpAxUIARUAAAAAGAElAADIQj0AgKJDeAE=&rs=AOn4CLCuKJDOkmRq1RFavjxCV9iSlFOPSQ" alt="Ca sĩ mạnh quỳnh sinh năm bao nhiêu năm 2024"></a> </div> <div class="media-body"> <h5 class="mb-2 fw-medium"><a href="/ca-si-manh-quynh-sinh-nam-bao-nhieu-nam-2024">Ca sĩ mạnh quỳnh sinh năm bao nhiêu 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/bao nhieu" class="tag-link">bao nhieu</a> <a href="/tags/Hỏi Đáp" class="tag-link">Hỏi Đáp</a> <a href="/tags/Bao nhiêu" class="tag-link">Bao nhiêu</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="/top-cau-thu-duoc-ua-thich-trong-fifaonline3-nam-2024"><img src="/dist/images/waiting.svg" width="200px" height="100px" data-orgimg="https://i.ytimg.com/vi/t9uxPZmsvLQ/hq720.jpg?sqp=-oaymwEXCNAFEJQDSFryq4qpAwkIARUAAIhCGAE=&rs=AOn4CLDkclHoxWsxXMN_qSAvp6EqMYQqSw" alt="Top cầu thủ được ưa thích trong fifaonline3 năm 2024"></a> </div> <div class="media-body"> <h5 class="mb-2 fw-medium"><a href="/top-cau-thu-duoc-ua-thich-trong-fifaonline3-nam-2024">Top cầu thủ được ưa thích trong fifaonline3 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> </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="/review-an-uong-tai-sam-son-nam-2024"><img src="/dist/images/waiting.svg" width="200px" height="100px" data-orgimg="https://i.ytimg.com/vi/ssbh5OhpIDo/hq720.jpg?sqp=-oaymwEXCNAFEJQDSFryq4qpAwkIARUAAIhCGAE=&rs=AOn4CLD7ofLnrBCGy-GCahI00dr0uLkEpg" alt="Review ăn uống tại sầm sơn năm 2024"></a> </div> <div class="media-body"> <h5 class="mb-2 fw-medium"><a href="/review-an-uong-tai-sam-son-nam-2024">Review ăn uống tại sầm sơ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/đánh giá" class="tag-link">đánh giá</a> <a href="/tags/Review" class="tag-link">Review</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="/quan-dai-trong-tieng-anh-la-gi-nam-2024"><img src="/dist/images/waiting.svg" width="200px" height="100px" data-orgimg="https://i.ytimg.com/vi/fR_hBhLgr-w/hq720.jpg?sqp=-oaymwEXCNAFEJQDSFryq4qpAwkIARUAAIhCGAE=&rs=AOn4CLDn46Y8_IkEKjgXmIEek1qMRk87sA" alt="Quần dài trong tiếng anh là gì năm 2024"></a> </div> <div class="media-body"> <h5 class="mb-2 fw-medium"><a href="/quan-dai-trong-tieng-anh-la-gi-nam-2024">Quần dài trong tiếng anh là gì 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/là ai" class="tag-link">là ai</a> <a href="/tags/Hỏi Đáp" class="tag-link">Hỏi Đáp</a> <a href="/tags/Là gì" class="tag-link">Là gì</a> <a href="/tags/Học Tốt" class="tag-link">Học Tốt</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="/so-sanh-elantra-2023-va-vios-trd-nam-2024"><img src="/dist/images/waiting.svg" width="200px" height="100px" data-orgimg="https://i.ytimg.com/vi/5dgrT3m35Bo/hq720.jpg?sqp=-oaymwEXCNAFEJQDSFryq4qpAwkIARUAAIhCGAE=&rs=AOn4CLD_8dP8365PctsfQAKYcudCfPhyNA" alt="So sánh elantra 2023 và vios trd năm 2024"></a> </div> <div class="media-body"> <h5 class="mb-2 fw-medium"><a href="/so-sanh-elantra-2023-va-vios-trd-nam-2024">So sánh elantra 2023 và vios trd 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/đánh giá" class="tag-link">đánh giá</a> <a href="/tags/Công Nghệ" class="tag-link">Công Nghệ</a> <a href="/tags/Ios" class="tag-link">Ios</a> <a href="/tags/So Sánh" class="tag-link">So Sánh</a> <a href="/tags/So sánh" class="tag-link">So sá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="/vo-bai-tap-toan-lop-4-tap-1-trang-4-nam-2024"><img src="/dist/images/waiting.svg" width="200px" height="100px" data-orgimg="https://i.ytimg.com/vi/9TJIqvuGzes/hq720.jpg?sqp=-oaymwEXCNAFEJQDSFryq4qpAwkIARUAAIhCGAE=&rs=AOn4CLCv1yIV0a3ByE0sRhmTGYryF3gCxA" alt="Vở bài tập toán lớp 4 tập 1 trang 4 năm 2024"></a> </div> <div class="media-body"> <h5 class="mb-2 fw-medium"><a href="/vo-bai-tap-toan-lop-4-tap-1-trang-4-nam-2024">Vở bài tập toán lớp 4 tập 1 trang 4 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="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="/tuyen-tap-de-thi-hoc-ki-2-toan-8-nam-2024"><img src="/dist/images/waiting.svg" width="200px" height="100px" data-orgimg="https://i.ytimg.com/vi/Ln4l74FBovQ/hq720.jpg?sqp=-oaymwEXCNAFEJQDSFryq4qpAwkIARUAAIhCGAE=&rs=AOn4CLBQCDq5-iffuTFaN0ogmVdPWy0Bfg" alt="Tuyển tập đề thi học kì 2 toán 8 năm 2024"></a> </div> <div class="media-body"> <h5 class="mb-2 fw-medium"><a href="/tuyen-tap-de-thi-hoc-ki-2-toan-8-nam-2024">Tuyển tập đề thi học kì 2 toán 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/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="/so-sanh-loreal-uv-perfect-aqua-essence-va-lo-hong-nam-2024"><img src="/dist/images/waiting.svg" width="200px" height="100px" data-orgimg="https://i.ytimg.com/vi/0bV9cgmEBUw/hqdefault.jpg?sqp=-oaymwE9COADEI4CSFryq4qpAy8IARUAAAAAGAElAADIQj0AgKJDeAHwAQH4AYwCgALgA4oCDAgAEAEYZSBlKGUwDw==&rs=AOn4CLDnmqp0pG_UiWYphX3NlDuCpvVS0w" alt="So sánh loreal uv perfect aqua essence và lọ hồng năm 2024"></a> </div> <div class="media-body"> <h5 class="mb-2 fw-medium"><a href="/so-sanh-loreal-uv-perfect-aqua-essence-va-lo-hong-nam-2024">So sánh loreal uv perfect aqua essence và lọ hồ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/đánh giá" class="tag-link">đánh giá</a> <a href="/tags/So Sánh" class="tag-link">So Sánh</a> <a href="/tags/So sánh" class="tag-link">So sá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="/100g-bo-thuc-vat-chua-bao-nhieu-calo-nam-2024"><img src="/dist/images/waiting.svg" width="200px" height="100px" data-orgimg="https://i.ytimg.com/vi/Y5K77MvvfxQ/hq720_2.jpg?sqp=-oaymwExCNAFEJQDSFryq4qpAyMIARUAAIhCGADwAQH4Ac4FgAKACooCDAgAEAEYESByKB8wDw==&rs=AOn4CLCYFp0vTizDeNzlpFLlIYkpSSNuog" alt="100g bơ thực vật chứa bao nhiêu calo năm 2024"></a> </div> <div class="media-body"> <h5 class="mb-2 fw-medium"><a href="/100g-bo-thuc-vat-chua-bao-nhieu-calo-nam-2024">100g bơ thực vật chứa bao nhiêu calo 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/bao nhieu" class="tag-link">bao nhieu</a> <a href="/tags/Hỏi Đáp" class="tag-link">Hỏi Đáp</a> <a href="/tags/Bao nhiêu" class="tag-link">Bao nhiêu</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="/co-bao-nhieu-khu-kinh-te-ven-bie-n-nam-2024"><img src="/dist/images/waiting.svg" width="200px" height="100px" data-orgimg="https://i.ytimg.com/vi/PWZcyPyC4AI/hq720.jpg?sqp=-oaymwExCNAFEJQDSFryq4qpAyMIARUAAIhCGAHwAQH4AZIDgALQBYoCDAgAEAEYZSBlKGUwDw==&rs=AOn4CLBCblDO5tq-YQyWvPVczSQJuUG9PQ" alt="Co bao nhiêu khu kinh tê ven biê n năm 2024"></a> </div> <div class="media-body"> <h5 class="mb-2 fw-medium"><a href="/co-bao-nhieu-khu-kinh-te-ven-bie-n-nam-2024">Co bao nhiêu khu kinh tê ven biê 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/bao nhieu" class="tag-link">bao nhieu</a> <a href="/tags/Hỏi Đáp" class="tag-link">Hỏi Đáp</a> <a href="/tags/Bao nhiêu" class="tag-link">Bao nhiêu</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="/resort-bon-bien-mui-ne-reviews-nam-2024"><img src="/dist/images/waiting.svg" width="200px" height="100px" data-orgimg="https://i.ytimg.com/vi/CtDj4fLoTWU/hq720_2.jpg?sqp=-oaymwExCNAFEJQDSFryq4qpAyMIARUAAIhCGADwAQH4AZoEgALAB4oCDAgAEAEYEyBPKH8wDw==&rs=AOn4CLDWwx5v4n1H95BbAkGV-ty54JKJnA" alt="Resort bốn biển mũi né reviews năm 2024"></a> </div> <div class="media-body"> <h5 class="mb-2 fw-medium"><a href="/resort-bon-bien-mui-ne-reviews-nam-2024">Resort bốn biển mũi né reviews 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/đánh giá" class="tag-link">đánh giá</a> <a href="/tags/Review" class="tag-link">Review</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="/giai-bai-tap-toan-10-sgk-dai-so-trang-9-nam-2024"><img src="/dist/images/waiting.svg" width="200px" height="100px" data-orgimg="https://i.ytimg.com/vi/QGJ8C8qJdoM/hq720.jpg?sqp=-oaymwEXCNAFEJQDSFryq4qpAwkIARUAAIhCGAE=&rs=AOn4CLCYAHGYuliFvFloSLCh3fvk_1ZuiA" alt="Giải bài tập toán 10 sgk đại số trang 9 năm 2024"></a> </div> <div class="media-body"> <h5 class="mb-2 fw-medium"><a href="/giai-bai-tap-toan-10-sgk-dai-so-trang-9-nam-2024">Giải bài tập toán 10 sgk đại số trang 9 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="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="/cang-det-nhu-2543-nghia-la-gi-nam-2024"><img src="/dist/images/waiting.svg" width="200px" height="100px" data-orgimg="https://i.ytimg.com/vi/Wc1F2L7ilq0/hq720.jpg?sqp=-oaymwEXCNAFEJQDSFryq4qpAwkIARUAAIhCGAE=&rs=AOn4CLAd9IM1mNHi1kewcOmhpCyRWO-kmg" alt="Căng đét như 2543 nghĩa là gì năm 2024"></a> </div> <div class="media-body"> <h5 class="mb-2 fw-medium"><a href="/cang-det-nhu-2543-nghia-la-gi-nam-2024">Căng đét như 2543 nghĩa là gì 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/là ai" class="tag-link">là ai</a> <a href="/tags/Hỏi Đáp" class="tag-link">Hỏi Đáp</a> <a href="/tags/Là gì" class="tag-link">Là gì</a> <a href="/tags/Ngôn ngữ" class="tag-link">Ngôn ngữ</a> <a href="/tags/Nghĩa là gì" class="tag-link">Nghĩa là gì</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="/chi-phi-dat-in-hoa-don-hach-toan-nam-2024"><img src="/dist/images/waiting.svg" width="200px" height="100px" data-orgimg="https://i.ytimg.com/vi/Eh4z9CehvhY/hq720.jpg?sqp=-oaymwExCNAFEJQDSFryq4qpAyMIARUAAIhCGAHwAQH4Ac4FgAKwCYoCDAgAEAEYVCBZKGUwDw==&rs=AOn4CLAl5blcfVYRY9y4MF_C6AGNgCc6eQ" alt="Chi phí đặt in hóa đơn hạch toán năm 2024"></a> </div> <div class="media-body"> <h5 class="mb-2 fw-medium"><a href="/chi-phi-dat-in-hoa-don-hach-toan-nam-2024">Chi phí đặt in hóa đơn hạch toá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> </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="/viet-nam-xuat-khau-cafe-cho-bao-nhieu-quoc-gia-nam-2024"><img src="/dist/images/waiting.svg" width="200px" height="100px" data-orgimg="https://i.ytimg.com/vi/nwMXuJgO8M4/hq720.jpg?sqp=-oaymwEXCNAFEJQDSFryq4qpAwkIARUAAIhCGAE=&rs=AOn4CLD-0pvk-ObhUcsN-lMFPnY83g4IRQ" alt="Việt nam xuất khẩu cafe cho bao nhiêu quốc gia năm 2024"></a> </div> <div class="media-body"> <h5 class="mb-2 fw-medium"><a href="/viet-nam-xuat-khau-cafe-cho-bao-nhieu-quoc-gia-nam-2024">Việt nam xuất khẩu cafe cho bao nhiêu quốc gia 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/bao nhieu" class="tag-link">bao nhieu</a> <a href="/tags/Hỏi Đáp" class="tag-link">Hỏi Đáp</a> <a href="/tags/Bao nhiêu" class="tag-link">Bao nhiêu</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-loai-trai-cay-tot-cho-duong-tieu-hoa-nam-2024"><img src="/dist/images/waiting.svg" width="200px" height="100px" data-orgimg="https://i.ytimg.com/vi/ZpiVAKQMA3Y/hq720.jpg?sqp=-oaymwEXCNAFEJQDSFryq4qpAwkIARUAAIhCGAE=&rs=AOn4CLDj5__FUchuu62RXQnQkl4Op-PSbQ" alt="Các loại trái cây tốt cho đường tiêu hóa năm 2024"></a> </div> <div class="media-body"> <h5 class="mb-2 fw-medium"><a href="/cac-loai-trai-cay-tot-cho-duong-tieu-hoa-nam-2024">Các loại trái cây tốt cho đường 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> </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="/danh-gia-vot-cau-long-mizuno-carbosonic-79-nam-2024"><img src="/dist/images/waiting.svg" width="200px" height="100px" data-orgimg="https://i.ytimg.com/vi/MRIHL2mXxw4/hq720.jpg?sqp=-oaymwEXCNAFEJQDSFryq4qpAwkIARUAAIhCGAE=&rs=AOn4CLD6n-u4KV9KidR9zDBgfOPzYs1MBg" alt="Đánh giá vợt cầu lông mizuno carbosonic 79 năm 2024"></a> </div> <div class="media-body"> <h5 class="mb-2 fw-medium"><a href="/danh-gia-vot-cau-long-mizuno-carbosonic-79-nam-2024">Đánh giá vợt cầu lông mizuno carbosonic 79 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/đánh giá" class="tag-link">đánh giá</a> <a href="/tags/Khỏe Đẹp" class="tag-link">Khỏe Đẹp</a> <a href="/tags/Son" class="tag-link">Son</a> <a href="/tags/Cryto" class="tag-link">Cryto</a> <a href="/tags/Giá " class="tag-link">Giá </a> <a href="/tags/Review" class="tag-link">Review</a> <a href="/tags/Mizuno Altius Tour" class="tag-link">Mizuno Altius Tour</a> <a href="/tags/ALTIUS 06" class="tag-link">ALTIUS 06</a> <a href="/tags/Mizuno ALTIUS 08" class="tag-link">Mizuno ALTIUS 08</a> <a href="/tags/Mizuno JPX" class="tag-link">Mizuno JPX</a> <a href="/tags/Mizuno Fortius" class="tag-link">Mizuno Fortius</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="/di-dai-ra-mau-la-hien-tuong-gi-nam-2024"><img src="/dist/images/waiting.svg" width="200px" height="100px" data-orgimg="https://i.ytimg.com/vi/MK8tYidTLzE/hq720.jpg?sqp=-oaymwExCNAFEJQDSFryq4qpAyMIARUAAIhCGAHwAQH4Af4JgALOBYoCDAgAEAEYZSBlKGUwDw==&rs=AOn4CLDy_GUlP0CETauSXN86ZQqNfXfx7w" alt="Đi đái ra máu là hiện tượng gì năm 2024"></a> </div> <div class="media-body"> <h5 class="mb-2 fw-medium"><a href="/di-dai-ra-mau-la-hien-tuong-gi-nam-2024">Đi đái ra máu là hiện tượng gì 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/là ai" class="tag-link">là ai</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="/1-lit-son-epoxy-son-duoc-bao-nhieu-m2-nam-2024"><img src="/dist/images/waiting.svg" width="200px" height="100px" data-orgimg="https://i.ytimg.com/vi/nUlReXc5un4/hq720.jpg?sqp=-oaymwExCNAFEJQDSFryq4qpAyMIARUAAIhCGAHwAQH4Af4JgALQBYoCDAgAEAEYMyBlKEUwDw==&rs=AOn4CLBqding7U9DpJMLq3EwJfb_G0uIag" alt="1 lít sơn epoxy sơn được bao nhiêu m2 năm 2024"></a> </div> <div class="media-body"> <h5 class="mb-2 fw-medium"><a href="/1-lit-son-epoxy-son-duoc-bao-nhieu-m2-nam-2024">1 lít sơn epoxy sơn được bao nhiêu m2 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/bao nhieu" class="tag-link">bao nhieu</a> <a href="/tags/Hỏi Đáp" class="tag-link">Hỏi Đáp</a> <a href="/tags/Bao nhiêu" class="tag-link">Bao nhiêu</a> <a href="/tags/Giá sơn epoxy" class="tag-link">Giá sơn epoxy</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/ham-danh-gia-trong-tim-kiem-nhi-phan-nam-2024">Hàm đánh giá trong tim kiếm nhị phân năm 2024</a></h5> <small class="meta"> <span class="pr-1">12 giờ trước</span> <span class="pr-1">. bởi</span> <a href="https://biquyetxaynha.com/author/NervousAccuracy" class="author">NervousAccuracy</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/dot-tri-bang-laser-bao-nhieu-tien-nam-2024">Đốt trĩ bằng laser bao nhiêu tiền năm 2024</a></h5> <small class="meta"> <span class="pr-1">12 giờ trước</span> <span class="pr-1">. bởi</span> <a href="https://biquyetxaynha.com/author/AccountableVerification" class="author">AccountableVerification</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/lau-lau-bi-ngua-va-sung-moi-la-benh-gi-nam-2024">Lâu lâu bị ngứa và sưng môi là bệnh gì năm 2024</a></h5> <small class="meta"> <span class="pr-1">12 giờ trước</span> <span class="pr-1">. bởi</span> <a href="https://biquyetxaynha.com/author/BiblicalParson" class="author">BiblicalParson</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/thuong-mai-xuat-nhap-khau-la-gi-nam-2024">Thương mại xuất nhập khẩu là gì năm 2024</a></h5> <small class="meta"> <span class="pr-1">12 giờ trước</span> <span class="pr-1">. bởi</span> <a href="https://biquyetxaynha.com/author/NonalignedApartheid" class="author">NonalignedApartheid</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/so-sanh-chip-snapdragon-450-va-exynos-7904-nam-2024">So sánh chip snapdragon 450 và exynos 7904 năm 2024</a></h5> <small class="meta"> <span class="pr-1">13 giờ trước</span> <span class="pr-1">. bởi</span> <a href="https://biquyetxaynha.com/author/HairlessCompetition" class="author">HairlessCompetition</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/dien-thoai-huawei-la-cua-nuoc-nao-san-xuat-nam-2024">Điện thoại huawei là của nước nào sản xuất năm 2024</a></h5> <small class="meta"> <span class="pr-1">13 giờ trước</span> <span class="pr-1">. bởi</span> <a href="https://biquyetxaynha.com/author/NaturalRobber" class="author">NaturalRobber</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-tong-hop-giai-phuong-trinh-vo-ti-9-nam-2024">Bài tập tổng hợp giải phương trình vô tỉ 9 năm 2024</a></h5> <small class="meta"> <span class="pr-1">13 giờ trước</span> <span class="pr-1">. bởi</span> <a href="https://biquyetxaynha.com/author/Public-relationsMeans" class="author">Public-relationsMeans</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/vien-uong-loi-sua-mabio-gia-bao-nhieu-nam-2024">Viên uống lợi sữa mabio giá bao nhiêu năm 2024</a></h5> <small class="meta"> <span class="pr-1">13 giờ trước</span> <span class="pr-1">. bởi</span> <a href="https://biquyetxaynha.com/author/Income-taxDiversity" class="author">Income-taxDiversity</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/maxxis-vansmart-a-s-al2-review-nam-2024">Maxxis vansmart a s al2 review năm 2024</a></h5> <small class="meta"> <span class="pr-1">13 giờ trước</span> <span class="pr-1">. bởi</span> <a href="https://biquyetxaynha.com/author/MetricDiscord" class="author">MetricDiscord</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/bi-loi-khi-chuyen-doi-tu-pdf-sang-word-nam-2024">Bị lỗi khi chuyển đổi từ pdf sang word năm 2024</a></h5> <small class="meta"> <span class="pr-1">13 giờ trước</span> <span class="pr-1">. bởi</span> <a href="https://biquyetxaynha.com/author/VocationalArchery" class="author">VocationalArchery</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">4 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">4 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">4 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">4 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">4 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">4 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">4 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">4 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">4 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/dien-vien-tuong-vy-bao-nhieu-tuoi-nam-2024">Diễn viên tường vy bao nhiêu tuổ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/TemptingLocality" class="author">TemptingLocality</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/https-wwwreview-secretscom-profitbuilder-nam-2024">Https www.review-secrets.com profitbuilder năm 2024</a></h5> <small class="meta"> <span class="pr-1">5 ngày trước</span> <span class="pr-1">. bởi</span> <a href="https://biquyetxaynha.com/author/RudeFoothold" class="author">RudeFoothold</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/dang-diem-m-cach-van-trung-tam-la-van-gi-nam-2024">Dạng điểm m cách vân trung tâm là vân gì năm 2024</a></h5> <small class="meta"> <span class="pr-1">4 ngày trước</span> <span class="pr-1">. bởi</span> <a href="https://biquyetxaynha.com/author/WondrousFascism" class="author">WondrousFascism</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/dau-bung-ben-trai-la-bi-gi-nam-2024">Đau bụng bên trái là bị 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/ShreddedPosterity" class="author">ShreddedPosterity</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/danh-gia-amply-denon-heos-amp-nam-2024">Đánh giá amply denon heos amp 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/ExtracurricularSorcery" class="author">ExtracurricularSorcery</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/tu-ban-hien-vat-la-gi-nam-2024">Tư bản hiện vật là gì năm 2024</a></h5> <small class="meta"> <span class="pr-1">19 giờ trước</span> <span class="pr-1">. bởi</span> <a href="https://biquyetxaynha.com/author/NewsworthyCertainty" class="author">NewsworthyCertainty</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-tinh-khoang-cach-diem-den-mat-nam-2024">Cac dạng bài tập tinh khoảng cach điểm đên 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/MurderedDefinition" class="author">MurderedDefinition</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/bi-loi-khi-chuyen-doi-tu-pdf-sang-word-nam-2024">Bị lỗi khi chuyển đổi từ pdf sang word năm 2024</a></h5> <small class="meta"> <span class="pr-1">13 giờ trước</span> <span class="pr-1">. bởi</span> <a href="https://biquyetxaynha.com/author/VocationalArchery" class="author">VocationalArchery</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/khac-phuc-loi-may-tinh-tat-nguon-cham-nam-2024">Khắc phục lỗi máy tính tắt nguồn chậm năm 2024</a></h5> <small class="meta"> <span class="pr-1">6 ngày trước</span> <span class="pr-1">. bởi</span> <a href="https://biquyetxaynha.com/author/PonderousDevolution" class="author">PonderousDevolution</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/dom-trong-co-hong-la-benh-gi-nam-2024">Đờm trong cổ họng là bệnh 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/TechnicalProceeding" class="author">TechnicalProceeding</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 ='huong-dan-dung-convertto-html-javascript'</script> <script>var postTime ='2022-09-16T16:59:02.185Z'</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 © 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>