Lâu lắm mới lại lập trình 🤣 Thật tình cờ là vừa trở lại lập trình thì gặp ngay công nghệ tiên tiến mới. Nói thế thôi chứ thực ra là cũ người mới ta. Electron ( trước kia gọi là Atom Shell ) đã Open từ rất lâu rồi, và những ứng dụng sử dụng công nghệ tiên tiến này cũng được sử dụng thoáng rộng ( ví dụ như tôi vẫn hằng ngày sử dụng Visual Studio Code và Microsoft Teams ) .

Bối cảnh

Dòng đời xô đẩy thế nào tôi lại được giao một dự án Bất Động Sản Proof of Concept ( PoC ). Và nhu yếu là cần giao một loại sản phẩm mẫu mà người mua hoàn toàn có thể thuận tiện thực thi và kiểm tra hoạt động giải trí. Trong trường hợp này không gì tốt hơn một ứng dụng chạy ngay trên máy tính, không nhu yếu setup hay thông số kỹ thuật gì nhiều .Ý tưởng bắt đầu là sẽ viết ứng dụng bằng Java, sau đó đóng gói, người mua chỉ cần cài JRE là hoàn toàn có thể chạy được. Tuy nhiên, tôi không có kinh nghiệm tay nghề gì về Java ngoại trừ chút kiến thức và kỹ năng học từ thời sinh viên. Vừa học vừa làm thì cũng được thôi nhưng dự án Bất Động Sản PoC thì không có nhiều thời hạn thế. Với kinh nghiệm tay nghề làm web nhiều năm thì lúc này Electron là một lựa chọn tốt. Với lựa chọn này thì bắt buộc phải biết NodeJS .

Tuy kinh nghiệm với JavaScript của tôi chỉ toàn là phía client, chưa bao giờ làm lập trình NodeJS, tuy nhiên nó cũng là JavaScript cả. Hơn nữa, ứng dụng không có yêu cầu cao về hiệu suất, nó chỉ cần chạy đúng logic là được. Suy đi tính lại thì Electron là lựa chọn hợp lý nhất.

Nói qua một chút ít về Electron, thì những ứng dụng viết bằng Electron không khác một trình duyệt web là mấy. Khi bật ứng dụng lên cũng có nghĩa là mở trình duyệt lên ( Electron có sẵn Chromium ở trong, tuy nhiên JavaScript engine của nó hơi khác một chút ít ) và tải một trang HTML. Việc của lập trình viên là sử dụng HTML, CSS, JS để tạo giao diện cho ứng dụng. Khi người dùng click những nút, thì lúc này có 2 giải pháp giải quyết và xử lý :

  1. Xử lý như một trang web bình thường, tức là sẽ submit form, gọi Ajax hay tương tự để gửi lên server, nhận kết quả và hiển thị cho người dùng. Với cách làm này, thì các framework như React hay VueJS sẽ là lựa chọn tuyệt vời cho phía client để có một ứng dụng thật “ngầu”. Về phía server, có thể sử dụng NodeJS hay bất cứ một ngôn ngữ lập trình nào khác, để lập trình web, quá trình truyền nhận dữ liệu tất cả thông qua API. Nhiều trang web được thiết kế sẵn theo hướng này có thể build app desktop rất nhanh, chỉ cần bỏ HTML, CSS, JS vào Electron build là xong, thế là vừa có web, vừa có app luôn.
  2. Ứng dụng Electron có 2 tiến trình, tiến trình chính (main) và renderer. Renderer là tiến trình mà bật Chromium và hiển thị HTML cho người dùng. Tuy là bật trình duyệt web và hiển thị, tuy nhiên tiến trình này có thể tiến hành một số xử lý trực tiếp bằng code NodeJS luôn (ví dụ có thể sử dụng fs để làm việc với files) chứ không bị giới hạn trong môi trường trình duyệt. Một vài xử lý yêu cầu phải chạy ở tiến trình main (ví dụ bật dialog), thì từ renderer có thể invoke một event để tiến trình chính thực hiện, kết quả sẽ được trả về cho renderer để hiển thị.

Với nhu yếu một ứng dụng đơn thuần, ít cần thiết lập hay thông số kỹ thuật thì tôi quyết định hành động sẽ viết ứng dụng theo hướng thứ 2 .

Lập trình ứng dụng đơn giản

Trong nội dung bài viết này, tôi sẽ trình diễn cách lập trình một ứng dụng đơn thuần. Ý tưởng là nhập vào một thư mục và rename tổng thể file trong thư mục đó thành 1 tên ngẫu nhiên có độ dài cố định và thắt chặt ( cũng tuỳ theo input ) .

Cài đặt và cấu hình

Trước hết, Electron chạy trên NodeJS nên yêu cầu máy tính phải cài sẵn NodeJS và npm. Với những người lập trình web thì những công cụ này không còn gì xa lạ nữa, nên trong bài viết này tôi không đi sâu vào chi tiết việc cài đặt này.

Sau khi đã có NodeJS thì việc tiếp theo là khởi tạo một project mới bằng lệnh và nhập những thông tin thiết yếu

USDnpm init

Câu lệnh sẽ khởi tạo 1 project NodeJS mới với file package.json chứa các thông tin mà chúng ta đã nhập vào. Bước tiếp theo là cài đặt electron để sử dụng

USDnpm install -D electron

Có thể nhiều người thắc mắc tại sao lại có -D trong câu lệnh trên. Nguyên nhân là bởi vì mục đích cuối cùng của project không phải là 1 package NodeJS. Mục đích cuối cùng là 1 ứng dụng chạy trên desktop, nên electron chỉ là devDependencies chứ không phải dependencies. Ngoài ra thì việc này có liên quan đến việc build app ở dưới.

Như đã nói ở trên, một ứng dụng Electron thực ra là mở một trình duyệt rồi tải trang HTML, do đó tôi cần thiết lập thêm những công cụ để build CSS, JS, v.v… Với ví dụ này tôi sử dụng TailwindCSS nên cần setup thêm những package sau :

USDnpm install -D postcss postcss-cli autoprefixer tailwindcss

Việc thông số kỹ thuật những công cụ này cũng không khó, tôi trọn vẹn làm theo hướng dẫn là được .

Viết ứng dụng

Về cơ bản ứng dụng sẽ gồm có 1 file HTML ( đặt tên tuỳ ý ), những file CSS, JS đi kèm với file HTML đó và 1 file NodeJS để để khởi động Electron bật ứng dụng. Cấu trúc thư mục của ứng dụng sẽ tựa như như dưới đây :

├── static
|   ├── src
|   |   ├── app.css // sẽ  build bằng tailwindcss thành /static/app.css
|   ├── app.js
├── index.html
├── main.js
└── package.json

Nội dung của file index.html như sau (màn hình có 2 trường input và 1 button)

html

    
    Simple app with Electron<p class="p"><!--</p-->title>
    <meta name=" viewport " content=" width = device-width, initial-scale = 1 ">
    <link rel=" stylesheet " href=" static / app.css ">

    <div
        class="
flex flex-col
justify-center
items-center
gap-4
w-screen
h-screen
"
    >
        <div class=" flex flex-row gap-4 justify-center items-center ">
            <label class=" text-right font-lg w-32 " for=" thư mục ">
                Select input
            <p class="p"><!--</p-->label>
            <div class=" flex flex-row items-center w-96 ">
                <input
                    type=" text "
                    class="
outline-none
flex-grow
border
border-gray-300
rounded-l
h-12
p-4
"
                    name=" thư mục "
                    id=" thư mục "
                    disabled
                >
                <button
                    class="
outline-none
bg-gray-200
hover : bg-gray-400
border-t
border-r
border-b
border-gray-300
h-12
px-4
- ml-1
rounded-r
"
                    id=" folder-btn "
                >
                    <svg
                        xmlns=" http://www.w3.org/2000/svg "
                        class=" h-6 w-6 inline-block "
                        fill=" none "
                        viewBox=" 0 0 24 24 "
                        stroke=" currentColor "
                    >
                        <path
                            stroke-linecap=" round "
                            stroke-linejoin=" round "
                            stroke-width=" 2 "
                            d=" M5 19 a2 2 0 01-2-2 V7a2 2 0 012 - 2 h4l2 2 h4a2 2 0 012 2 v1M5 19 h14a2 2 0 002 - 2 v - 5 a2 2 0 00-2-2 H9a2 2 0 00-2 2 v5a2 2 0 01-2 2 z "
                        / >
                    <p class="p"><!--</p-->svg>
                    Choose folder
                <p class="p"><!--</p-->button>
            <p class="p"><!--</p-->div>
        <p class="p"><!--</p-->div>
        <div class=" flex flex-row gap-4 justify-center items-center ">
            <label class=" text-right font-lg w-32 " for=" length ">
                Filename length
            <p class="p"><!--</p-->label>
            <input
                type=" number "
                class="
border border-gray-200
focus : border-blue-500
outline-none
w-96
rounded-l
h-12
rounded
p-4
"
                value=" 16 "
                name=" length "
                id=" length "
            >
        <p class="p"><!--</p-->div>

        <div class=" ml-36 w-96 text-left ">
            <button
                class="
outline-none
bg-blue-500
hover : bg-blue-700
px-8
py-2
text-white
uppercase
"
                id=" action-btn "
            >
                <svg
                    xmlns=" http://www.w3.org/2000/svg "
                    class=" h-6 w-6 inline-block "
                    fill=" none "
                    viewBox=" 0 0 24 24 "
                    stroke=" currentColor "
                >
                    <path
                        stroke-linecap=" round "
                        stroke-linejoin=" round "
                        stroke-width=" 2 "
                        d=" M15 15 l - 2 5L9 9 l11 4-5 2 zm0 0 l5 5M7. 188 2.239 l. 777 2.897 M5. 136 7.965 l - 2.898 -. 777M13. 95 4.05 l - 2.122 2.122 m - 5.657 5.656 l - 2.12 2.122 "
                    / >
                <p class="p"><!--</p-->svg>
                Run
            <p class="p"><!--</p-->button>
        <p class="p"><!--</p-->div>

        <script src=" static / app.js "<p class="p">><!--</p-->script>
    <p class="p"><!--</p-->div>
<p class="p"><!--</p-->html>
</p></p></p></p></p></p></p></p></p></p></p></p></p></p></code></pre>
<p class="my-4">File <code class="bg-gray-100 p-0.5 dark:bg-gray-900 text-sm">static/src/app.css</code> thì hoàn toàn sử dụng TailwindCSS nên nội dung đơn giản như sau:</p>
<pre class="text-sm"><code>@tailwindbase;
@tailwindcomponents;
@tailwindutilities;
</code></pre>
<p class="my-4">Ngoài ra thì file <code class="bg-gray-100 p-0.5 dark:bg-gray-900 text-sm">static/app.js</code> hiện tại đang trống, chúng ta sẽ bổ sung thêm các xử lý cần thiết sau.</p>
<p class="my-4">Cuối cùng là file <code class="bg-gray-100 p-0.5 dark:bg-gray-900 text-sm">main.js</code>, chúng ta cần khởi tạo app mới, tải trang HTML và hiển thị cho người dùng. Tất cả thao tác đó sử dụng code như sau:</p>
<pre class="text-sm"><code>const{app,BrowserWindow}=require(" electron ") ;

letmainWin;

/ * *
* Hàm dùng để khởi tạo Window
* /
constcreateWindow=( )=>{
/ / Tạo Window mới với
mainWin=newBrowserWindow( {
width:800,
height:650,
icon:" static / icon.jpeg ",
webPreferences:{
nodeIntegration:true,
contextIsolation:false,
} ,
} ) ;

/ / Không cần menu
mainWin.removeMenu( ) ;

/ / Tải file html và hiển thị
mainWin.loadFile(". / index.html ") ;

/ / mainWin. webContents. openDevTools ( ) ;
} ;

/ / Sau khi khởi động thì mở Window
app.whenReady( ) .then(createWindow) ;

/ / Xử lý sau khi Window được đóng
app.on(" window-all-closed ",( )=>{
app.quit( ) ;
} ) ;

/ / Xử lý khi app ở trạng thái active, ví dụ click vào icon
app.on(" activate ",( )=>{
/ / Mở window mới khi không có window nào
if(BrowserWindow.getAllWindows( ) .length= = =0){
createWindow( ) ;
}
} ) ;
</code></pre>
<p>Sau khi đã triển khai xong những file trên, giờ đây tất cả chúng ta hoàn toàn có thể khởi động app và xem thành quả</p>
<pre class="text-sm"><code>USDnpx electron .
</code></pre>
<p class="my-4"><img decoding="async" alt="app" class="w-auto h-auto mx-auto" height="270" src="https://i.imgur.com/oXjqcV3.png" width="360"/></p>
<h3 class="group font-semibold mt-8 mb-4 pb-2 border-b border-gray-100 dark:border-gray-700 text-2xl text-gray-900 dark:text-gray-100" id="tuong-tac"><span id="Tuong_tac">Tương tác</span></h3>
<p>Mặc dù ứng dụng đã trông rất ngầu, nhưng hiện tại nó chưa hoạt động giải trí. Bởi những với những button tất cả chúng ta chưa giải quyết và xử lý gì. Công việc tiếp theo chính là viết thêm giải quyết và xử lý cho những button này .</p>
<h4 class="group font-semibold mt-8 mb-4 pb-2 border-b border-gray-100 dark:border-gray-700 text-xl text-gray-900 dark:text-gray-100" id="select-folder"><span id="Select_folder">Select folder</span></h4>
<p>Để hoàn toàn có thể input một thư mục, tất cả chúng ta cần sử dụng đến dialog. Tuy nhiên là dialog chỉ hoàn toàn có thể bật từ main process mà không hề bật từ renderer được. Nói qua một chút ít thì để thao tác với dialog thì tôi đã phải tìm kiếm, chạy thử không biết bao nhiêu lần. Nguyên nhân là những hướng dẫn trên mạng hầu hết đã lỗi thời, khi mà từ renderer hoàn toàn có thể gọi remote và bật dialog được luôn .</p>
<blockquote class="my-4 py-1 px-4 text-gray-400 bg-gray-100 border-l-4 border-gray-300 dark:border-gray-600 dark:bg-gray-900 dark:text-gray-300">
<p class="my-4 mt-2 mb-2">Có 1 cách khác, đó là sử dụng HTML input file và thêm thuộc tính <code class="bg-gray-100 p-0.5 dark:bg-gray-900 text-sm">webkitdirectory</code>. Tuy nhiên cách làm này không hoàn toàn giống với dialog. Sử dụng cách này thì mỗi lần chọn folder, thực chất là chọn input tất cả file trong folder đó.</p>
</blockquote>
<p class="my-4">Ở <code class="bg-gray-100 p-0.5 dark:bg-gray-900 text-sm">app.js</code> là file sẽ được thực thi ở renderer, thì chúng ta cần <code class="bg-gray-100 p-0.5 dark:bg-gray-900 text-sm">invoke</code> một event để main process xử lý, sau đó nhận kết quả và hiển thị cho người dùng, như kiểu dưới đây:</p>
<pre class="text-sm"><code>const{ipcRenderer}=require(" electron ") ;


document.querySelector(" # folder-btn ") .addEventListener(" click ",( )=>{
ipcRenderer
.invoke(" select-folder ")
.then( (data)=>{
if(!data.canceled){
document.querySelector(" # folder ") .value=data<p class="p">.<div style="margin-bottom:15px;margin-top:15px;"><p style="padding: 20px; background: #eaf0ff;">Xem thêm: <a href="http://139.180.218.5/0127-la-mang-gi-1651896067" rel="bookmark noopener" target="_blank" title="Đầu số 0127 đổi thành gì? Chuyển đổi đầu số VinaPhone có ý nghĩa gì? - http://139.180.218.5">Đầu số 0127 đổi thành gì? Chuyển đổi đầu số VinaPhone có ý nghĩa gì? - http://139.180.218.5</a> </p></div></p>filePaths[0] ;
}
} )
.catch( (err)=>{
console.log(err)
} ) ;
} ) ;
</code></pre>
<p>Lưu ý một chút ít là dù Electron thực ra là mở một trình duyệt và hiển thị HTML nhưng nó có đôi chút độc lạ so với trình duyệt thường thì. Ở phía client, tất cả chúng ta hoàn toàn có thể thực thi một số ít code NodeJS mà thông thường trình duyệt không tương hỗ. Tuy nhiên với ứng dụng trong bài thì điều đó chưa thiết yếu .Ở main process, mọi việc đơn thuần là bật dialog để chọn thư mục rồi trả về cho renderer là được .</p>
<pre class="text-sm"><code>const{ipcMain,dialog}=require(" electron ") ;

ipcMain.handle(" select-folder ",async( )=>{
constpathObj=awaitdialog.showOpenDialog(mainWin,{
properties:[" openDirectory "] ,
} ) ;
returnpathObj;
} ) ;
</code></pre>
<p>Kết quả là tất cả chúng ta có một dialog để chọn như dưới đây</p>
<p class="my-4"><img loading="lazy" decoding="async" alt="dialog" class="w-auto h-auto mx-auto" height="270" src="https://i.imgur.com/qBu5SSw.png" width="360"/></p>
<h4 class="group font-semibold mt-8 mb-4 pb-2 border-b border-gray-100 dark:border-gray-700 text-xl text-gray-900 dark:text-gray-100" id="submit"><span id="Submit">Submit</span></h4>
<p>Tương tự như ở trên, so với button submit, thì ở phía renderer chỉ đơn thuần là invoke một sự kiện và truyền tài liệu cho main process .</p>
<pre class="text-sm"><code>document.querySelector(" # action-btn ") .addEventListener(" click ",( )=>{
constthư mục=document.querySelector(" # folder ") .value;
constlength=parseInt(document.querySelector(" # length ") .value) ;

ipcRenderer.invoke(" rename ",{thư mục:thư mục,length:length} ) ;
} ) ;
</code></pre>
<p>Toàn bộ giải quyết và xử lý sẽ triển khai ở main process :</p>
<pre class="text-sm"><code>constfs=require(" fs ") ;
constpath=require(" path ") ;

ipcMain.handle(" rename ",(_,data)=>{
constrandomName=(length)=>{
varresult=" ";
varcharacters=
" ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789 ";
varcharactersLength=characters.length;
for(vari=0;i<length;i+ +){
result+ =characters.charAt(
Math.floor(Math.random( )*charactersLength)
) ;
}
returnresult;
} ;

fs.readdir(data.thư mục,(_,files)=>{
files.forEach( (file)=>{
oldPath=path.resolve(data.thư mục,file) ;
ext=path.extname(file) ;
newPath=path.resolve(data.thư mục,randomName(data.length)+ext) ;
fs.rename(oldPath,newPath,(err)=>{
if(err){
console.log(err) ;
}else{
console.log(" Successfully renamed the file "+file) ;
}
} ) ;
} ) ;
} ) ;

dialog.showMessageBoxSync(mainWin,{
message:" Successfully renamed the all files in "+data.thư mục,
type:" info ",
} ) ;
} ) ;
</code></pre>
<p class="my-4">Chỉ có 1 điểm tôi muốn nói thêm là ở xử lý trên, tôi tiếp tục sử dụng dialog để thông báo cho người dùng về việc xử lý đã hoàn thành. Có người nhiều sẽ nghĩ sao không dùng <code class="bg-gray-100 p-0.5 dark:bg-gray-900 text-sm">alert</code> cho nhanh. Câu trả lời <code class="bg-gray-100 p-0.5 dark:bg-gray-900 text-sm">alert</code> vẫn hoạt động (như trình duyệt bình thường) nhưng sau đó thì cửa sổ app sẽ bị treo (chỗ này thì khác trình duyệt rồi 😂). Nguyên nhân là do <code class="bg-gray-100 p-0.5 dark:bg-gray-900 text-sm">alert</code> hay kể cả <code class="bg-gray-100 p-0.5 dark:bg-gray-900 text-sm">prompt</code>, <code class="bg-gray-100 p-0.5 dark:bg-gray-900 text-sm">confirm</code> sẽ block thread đang chạy và như tôi thấy thì sau đó thread sẽ không chạy tiếp nữa (trừ khi click ra đâu đó rồi quay lại) (xem thêm ở đây).</p>
<p>Vì vậy tổng thể những giải quyết và xử lý kiểu như vậy đều nên sử dụng dialog ở main process thay vì giải quyết và xử lý ở renderer. Kết quả là tất cả chúng ta đã rename thành công xuất sắc hàng loạt file trong 1 thư mục như dưới đây :</p>
<p class="my-4"><img loading="lazy" decoding="async" alt="renamed" class="w-auto h-auto mx-auto" height="270" src="https://i.imgur.com/MToKMtj.png" width="360"/></p>
<h3 class="group font-semibold mt-8 mb-4 pb-2 border-b border-gray-100 dark:border-gray-700 text-2xl text-gray-900 dark:text-gray-100" id="build-app"><span id="Build_app">Build app</span></h3>
<p>Sau khi đã lập trình xong tổng thể những yếu tố ở trên, chỉ còn 1 bước sau cuối nữa là hoàn thành xong. Đó là build app hoàn hảo để hoàn toàn có thể chạy ở bất kể đâu ( vì để nguyên như trên thì nhu yếu máy phải setup NodeJS và những package ) .Có nhiều công cụ khác nhau được cho phép thao tác này, tuy nhiên tôi sử dụng electron-builder. Cài đặt package này như sau :</p>
<pre class="text-sm"><code>USDnpm install -D electron-builder
</code></pre>
<p class="my-4">Sau đó thì tạo một file JS (tên gì cũng được, tôi đặt tên là <code class="bg-gray-100 p-0.5 dark:bg-gray-900 text-sm">build-app.js</code>) với nội dung là sử dụng electron-builder để build app như sau:</p>
<pre class="text-sm"><code>constbuilder=require(" electron-builder ") ;

builder.build( {
config:{
appId:" electron.rename ",
productName:" SampleApp ",
win:{
target:{
target:" zip ",
arch:" x64 ",
} ,
} ,
} ,
} ) ;
</code></pre>
<p>Trên đây chỉ là thông số kỹ thuật đơn thuần, có rất nhiều thông số kỹ thuật khác nhau, mời những bạn tìm hiểu thêm thêm ở đây. Sau khi thông số kỹ thuật xong thì thực thi file để build app là xong :</p>
<pre class="text-sm"><code>USDnode build-app.js
</code></pre>
<p class="my-4">Chờ mấy phút để app build xong (tuỳ cấu hình máy mạnh hay yếu). Kết quả sẽ được ghi ở thư mục <code class="bg-gray-100 p-0.5 dark:bg-gray-900 text-sm">dist</code> bao gồm 1 file zip, 1 thư mục <code class="bg-gray-100 p-0.5 dark:bg-gray-900 text-sm">win-unpack</code> (nội dung giống hệt file zip) và một số file debug. Trong thư mục sẽ có các tất cả các file cần thiết để chạy app nên app có thể chạy ở bất kỳ máy nào (dùng x64, x86 thì phải sửa lại cấu hình trên một chút để build). Giờ đây chúng ta chỉ cần click file <code class="bg-gray-100 p-0.5 dark:bg-gray-900 text-sm">SampleApp.exe</code> là app sẽ chạy.</p>
<div style="margin-bottom:15px;margin-top:15px;">
<p style="padding: 20px; background: #eaf0ff;">Xem thêm: <a href="http://139.180.218.5/0394-la-mang-gi-1651896841" rel="bookmark noopener" target="_blank" title="Đầu số 039 là mạng gì? chuyển đổi từ số nào? Ý nghĩa sim 039">Đầu số 039 là mạng gì? chuyển đổi từ số nào? Ý nghĩa sim 039</a></p>
</div>
<p class="my-4">Một lưu ý nhỏ là click file exe để chạy app thì tất cả các câu <code class="bg-gray-100 p-0.5 dark:bg-gray-900 text-sm">console.log</code> ở main process sẽ chẳng được ghi ra ở đâu cả (hoặc được ghi ra đâu đó mà tôi không biết). Muốn xem những thông tin này (để debug chẳng hạn) thì cần phải gọi file exe từ console (PowerShell, cmd hoặc bash, v.v...).</p>
<h2 class="group font-semibold mt-8 mb-4 pb-2 border-b border-gray-100 dark:border-gray-700 text-3xl text-gray-900 dark:text-gray-100" id="nhan-xet"><span id="Nhan_xet">Nhận xét</span></h2>
<p>Electron thực sự là một giải pháp tốt cho những người chỉ có kinh nghiệm tay nghề làm web như tôi hoàn toàn có thể lập trình ứng dụng cho desktop. Tuy nhiên, cá thể tôi cho rằng đây chỉ là một giải pháp tình thế mà thôi. Tuy ứng dụng chạy khá nhanh, hiệu suất ổn nhưng dung tích của nó lại là yếu tố. Ứng dụng đơn thuần như trong bài mà build xong file zip cũng có dung tích gần 80MB, còn file unzip là gần 200MB, đó là những số lượng khá lớn cho một ứng không có gì là phức tạp .Tất nhiên là với sự tăng trưởng của công nghệ tiên tiến bán dẫn, việc file có dung tích hơi lớn một chút ít lúc bấy giờ trọn vẹn không phải là yếu tố gì quá to tát. Nhưng với những ai theo đuổi sự tuyệt đối thì có lẽ rằng một giải pháp native hơn sẽ là tốt hơn .</p></div>
<div style="margin-bottom:15px;margin-top:15px;">
<p style="padding: 20px; background: #eaf0ff;">Source: <a href="http://139.180.218.5/" rel="bookmark noopener" target="_blank" title="http://139.180.218.5">http://139.180.218.5</a> <br /> Category: <a href="http://139.180.218.5/category/thuat-ngu-doi-thuong/" rel="bookmark noopener" target="_blank" title="Thuật ngữ đời thường">Thuật ngữ đời thường</a> </p>
</div>
<div class="sharedaddy sd-sharing-enabled"><div class="robots-nocontent sd-block sd-social sd-social-icon-text sd-sharing"><h3 class="sd-title"><span id="Share_this">Share this:</span></h3><div class="sd-content"><ul><li class="share-twitter"><a rel="nofollow noopener noreferrer" data-shared="sharing-twitter-40514" class="share-twitter sd-button share-icon" href="https://nhacly.com/electron-js-la-gi-1652197389/?share=twitter" target="_blank" title="Click to share on Twitter" ><span>Twitter</span></a></li><li class="share-facebook"><a rel="nofollow noopener noreferrer" data-shared="sharing-facebook-40514" class="share-facebook sd-button share-icon" href="https://nhacly.com/electron-js-la-gi-1652197389/?share=facebook" target="_blank" title="Click to share on Facebook" ><span>Facebook</span></a></li><li class="share-end"></li></ul></div></div></div>
<div id='jp-relatedposts' class='jp-relatedposts' >
	<h3 class="jp-relatedposts-headline"><span id="Related"><em>Related</em></span></h3>
</div>                                                     <script>
    function pinIt()
    {
      var e = document.createElement('script');
      e.setAttribute('type','text/javascript');
      e.setAttribute('charset','UTF-8');
      e.setAttribute('src','https://assets.pinterest.com/js/pinmarklet.js?r='+Math.random()*99999999);
      document.body.appendChild(e);
    }
    </script>
                     <div class="post-share">
                          <div class="post-share-icons cf">
                           
                              <a href="https://www.facebook.com/sharer.php?u=https://nhacly.com/electron-js-la-gi-1652197389/" class="link facebook" target="_blank" >
                                <i class="fab fa-facebook"></i></a>
                            
            
                              <a href="http://twitter.com/share?url=https://nhacly.com/electron-js-la-gi-1652197389/&text=L%E1%BA%ADp%20tr%C3%ACnh%20desktop%20app%20v%E1%BB%9Bi%20Electron%20%7C%20Blog%20%7C%20manhhomienbienthuy" class="link twitter" target="_blank">
                                <i class="fab fa-twitter"></i></a>
            
                              <a href="mailto:?subject=Lập%20trình%20desktop%20app%20với%20Electron%20|%20Blog%20|%20manhhomienbienthuy&body=https://nhacly.com/electron-js-la-gi-1652197389/" class="link email" target="_blank" >
                                <i class="fas fa-envelope"></i></a>


                              <a href="https://www.linkedin.com/sharing/share-offsite/?url=https://nhacly.com/electron-js-la-gi-1652197389/&title=L%E1%BA%ADp%20tr%C3%ACnh%20desktop%20app%20v%E1%BB%9Bi%20Electron%20%7C%20Blog%20%7C%20manhhomienbienthuy" class="link linkedin" target="_blank" >
                                <i class="fab fa-linkedin"></i></a>

                             <a href="https://telegram.me/share/url?url=https://nhacly.com/electron-js-la-gi-1652197389/&text&title=L%E1%BA%ADp%20tr%C3%ACnh%20desktop%20app%20v%E1%BB%9Bi%20Electron%20%7C%20Blog%20%7C%20manhhomienbienthuy" class="link telegram" target="_blank" >
                                <i class="fab fa-telegram"></i></a>

                              <a href="javascript:pinIt();" class="link pinterest"><i class="fab fa-pinterest"></i></a>    
                          </div>
                    </div>

                <div class="clearfix mb-3"></div>
                
	<nav class="navigation post-navigation" aria-label="Bài viết">
		<h2 class="screen-reader-text">Điều hướng bài viết</h2>
		<div class="nav-links"><div class="nav-previous"><a href="https://nhacly.com/electrolyte-la-gi-1652197214/" rel="prev">Electrolytes – Vai trò của chất điện giải <div class="fas fa-angle-double-right"></div><span></span></a></div><div class="nav-next"><a href="https://nhacly.com/elitist-la-gi-1652197476/" rel="next"><div class="fas fa-angle-double-left"></div><span></span> Elitist Là Gì ? Nghĩa Của Từ Elitism Trong Tiếng Việt Nghĩa Của Từ Elitism Trong Tiếng Việt</a></div></div>
	</nav>                          </article>
            </div>
		                 <div class="media mg-info-author-block">
            <a class="mg-author-pic" href="https://nhacly.com/author/adnhacly/"><img alt='' src='https://secure.gravatar.com/avatar/b99f3da74b8341f72b0b2d557f58b2b0?s=150&d=mm&r=g' srcset='https://secure.gravatar.com/avatar/b99f3da74b8341f72b0b2d557f58b2b0?s=300&d=mm&r=g 2x' class='avatar avatar-150 photo' height='150' width='150' loading='lazy' decoding='async'/></a>
                <div class="media-body">
                  <h4 class="media-heading">By <a href ="https://nhacly.com/author/adnhacly/">adnhacly</a></h4>
                  <p></p>
                </div>
            </div>
                          <div class="mg-featured-slider p-3 mb-4">
                        <!--Start mg-realated-slider -->
                        <div class="mg-sec-title">
                            <!-- mg-sec-title -->
                                                        <h4>Related Post</h4>
                        </div>
                        <!-- // mg-sec-title -->
                           <div class="row">
                                <!-- featured_post -->
                                                                      <!-- blog -->
                                  <div class="col-md-4">
                                    <div class="mg-blog-post-3 minh back-img" 
                                                                        style="background-image: url('https://nhacly.com/wp-content/uploads/2022/05/gai-doan-trang-la-gi.png');" >
                                      <div class="mg-blog-inner">
                                                                                      <div class="mg-blog-category"> <a class="newsup-categories category-color-1" href="https://nhacly.com/category/thuat-ngu-doi-thuong/" alt="View all posts in Thuật ngữ đời thường"> 
                                 Thuật ngữ đời thường
                             </a>                                          </div>                                             <h4 class="title"> <a href="https://nhacly.com/doan-trang-la-gi-1653042654/" title="Permalink to: ‘đoan trang’ là gì? – Cùng giải nghĩa từ đoan trang">
                                              ‘đoan trang’ là gì? – Cùng giải nghĩa từ đoan trang</a>
                                             </h4>
                                            <div class="mg-blog-meta"> 
                                                                                          <span class="mg-blog-date"><i class="fas fa-clock"></i> 
                                              Th11 1, 2022</span>
                                                                                        <a href="https://nhacly.com/author/adnhacly/"> <i class="fas fa-user-circle"></i> adnhacly</a>
                                              </div>   
                                        </div>
                                    </div>
                                  </div>
                                    <!-- blog -->
                                                                        <!-- blog -->
                                  <div class="col-md-4">
                                    <div class="mg-blog-post-3 minh back-img" 
                                                                        style="background-image: url('https://nhacly.com/wp-content/uploads/2022/06/veneer-soi-Hoang-Hung-Pro-Thanh-Hoa.jpg');" >
                                      <div class="mg-blog-inner">
                                                                                      <div class="mg-blog-category"> <a class="newsup-categories category-color-1" href="https://nhacly.com/category/thuat-ngu-doi-thuong/" alt="View all posts in Thuật ngữ đời thường"> 
                                 Thuật ngữ đời thường
                             </a>                                          </div>                                             <h4 class="title"> <a href="https://nhacly.com/wood-veneer-la-gi-1654249617/" title="Permalink to: VENEER LÀ LOẠI GỖ GÌ? NÊN HAY KHÔNG NÊN SỬ DỤNG VENEER? – Công ty vật tư quảng cáo – Nội thất Hoàng Hưng">
                                              VENEER LÀ LOẠI GỖ GÌ? NÊN HAY KHÔNG NÊN SỬ DỤNG VENEER? – Công ty vật tư quảng cáo – Nội thất Hoàng Hưng</a>
                                             </h4>
                                            <div class="mg-blog-meta"> 
                                                                                          <span class="mg-blog-date"><i class="fas fa-clock"></i> 
                                              Th11 1, 2022</span>
                                                                                        <a href="https://nhacly.com/author/adnhacly/"> <i class="fas fa-user-circle"></i> adnhacly</a>
                                              </div>   
                                        </div>
                                    </div>
                                  </div>
                                    <!-- blog -->
                                                                        <!-- blog -->
                                  <div class="col-md-4">
                                    <div class="mg-blog-post-3 minh back-img" 
                                                                        style="background-image: url('https://nhacly.com/wp-content/uploads/2022/06/san-xuat-tam-bakelite.jpg');" >
                                      <div class="mg-blog-inner">
                                                                                      <div class="mg-blog-category"> <a class="newsup-categories category-color-1" href="https://nhacly.com/category/thuat-ngu-doi-thuong/" alt="View all posts in Thuật ngữ đời thường"> 
                                 Thuật ngữ đời thường
                             </a>                                          </div>                                             <h4 class="title"> <a href="https://nhacly.com/vat-lieu-bakelite-la-gi-1654249435/" title="Permalink to: Tấm nhựa Bakelite là gì? Các ứng dụng của phíp cam Bakelite">
                                              Tấm nhựa Bakelite là gì? Các ứng dụng của phíp cam Bakelite</a>
                                             </h4>
                                            <div class="mg-blog-meta"> 
                                                                                          <span class="mg-blog-date"><i class="fas fa-clock"></i> 
                                              Th6 3, 2022</span>
                                                                                        <a href="https://nhacly.com/author/adnhacly/"> <i class="fas fa-user-circle"></i> adnhacly</a>
                                              </div>   
                                        </div>
                                    </div>
                                  </div>
                                    <!-- blog -->
                                                                </div>
                            
                    </div>
                    <!--End mg-realated-slider -->
                  <div id="comments" class="comments-area mg-card-box padding-20">

		<div id="respond" class="comment-respond">
		<h3 id="reply-title" class="comment-reply-title">Để lại một bình luận <small><a rel="nofollow" id="cancel-comment-reply-link" href="/electron-js-la-gi-1652197389/#respond" style="display:none;">Hủy</a></small></h3><form action="https://nhacly.com/wp-comments-post.php" method="post" id="commentform" class="comment-form" novalidate><p class="comment-notes"><span id="email-notes">Email của bạn sẽ không được hiển thị công khai.</span> <span class="required-field-message">Các trường bắt buộc được đánh dấu <span class="required">*</span></span></p><p class="comment-form-comment"><label for="comment">Bình luận <span class="required">*</span></label> <textarea id="comment" name="comment" cols="45" rows="8" maxlength="65525" required></textarea></p><p class="comment-form-author"><label for="author">Tên <span class="required">*</span></label> <input id="author" name="author" type="text" value="" size="30" maxlength="245" autocomplete="name" required /></p>
<p class="comment-form-email"><label for="email">Email <span class="required">*</span></label> <input id="email" name="email" type="email" value="" size="30" maxlength="100" aria-describedby="email-notes" autocomplete="email" required /></p>
<p class="comment-form-url"><label for="url">Trang web</label> <input id="url" name="url" type="url" value="" size="30" maxlength="200" autocomplete="url" /></p>
<p class="comment-form-cookies-consent"><input id="wp-comment-cookies-consent" name="wp-comment-cookies-consent" type="checkbox" value="yes" /> <label for="wp-comment-cookies-consent">Lưu tên của tôi, email, và trang web trong trình duyệt này cho lần bình luận kế tiếp của tôi.</label></p>
<p class="form-submit"><input name="submit" type="submit" id="submit" class="submit" value="Gửi bình luận" /> <input type='hidden' name='comment_post_ID' value='40514' id='comment_post_ID' />
<input type='hidden' name='comment_parent' id='comment_parent' value='0' />
</p></form>	</div><!-- #respond -->
	</div><!-- #comments -->      </div>
             <!--sidebar-->
          <!--col-md-3-->
            <aside class="col-md-3">
                  
<aside id="secondary" class="widget-area" role="complementary">
	<div id="sidebar-right" class="mg-sidebar">
		<div id="block-2" class="mg-widget widget_block widget_search"><form role="search" method="get" action="https://nhacly.com/" class="wp-block-search__button-outside wp-block-search__text-button wp-block-search"    ><label class="wp-block-search__label" for="wp-block-search__input-1" >Tìm kiếm</label><div class="wp-block-search__inside-wrapper " ><input class="wp-block-search__input" id="wp-block-search__input-1" placeholder="" value="" type="search" name="s" required /><button aria-label="Tìm kiếm" class="wp-block-search__button wp-element-button" type="submit" >Tìm kiếm</button></div></form></div><div id="nav_menu-3" class="mg-widget widget_nav_menu"><div class="mg-wid-title"><h6>Các danh mục bài viết liên quan</h6></div><div class="menu-menu-category-showweb-container"><ul id="menu-menu-category-showweb" class="menu"><li id="menu-item-27447" class="menu-item menu-item-type-taxonomy menu-item-object-category menu-item-27447"><a href="https://nhacly.com/category/cach-bam-hop-am-guitar/">cách bấm hợp âm guitar</a></li>
<li id="menu-item-27448" class="menu-item menu-item-type-taxonomy menu-item-object-category menu-item-27448"><a href="https://nhacly.com/category/cach-doc-not-nhac/">Cách đọc nốt nhạc</a></li>
<li id="menu-item-27450" class="menu-item menu-item-type-taxonomy menu-item-object-category menu-item-27450"><a href="https://nhacly.com/category/chuong-trinh-am-nhac/">Chương trình âm nhạc</a></li>
<li id="menu-item-27458" class="menu-item menu-item-type-taxonomy menu-item-object-category menu-item-27458"><a href="https://nhacly.com/category/hoc-ken/">Học kèn</a></li>
<li id="menu-item-27459" class="menu-item menu-item-type-taxonomy menu-item-object-category menu-item-27459"><a href="https://nhacly.com/category/hoc-ken-saxophone/">Học kèn saxophone</a></li>
<li id="menu-item-27460" class="menu-item menu-item-type-taxonomy menu-item-object-category menu-item-27460"><a href="https://nhacly.com/category/hoc-dan/">Học đàn</a></li>
<li id="menu-item-27461" class="menu-item menu-item-type-taxonomy menu-item-object-category menu-item-27461"><a href="https://nhacly.com/category/hop-am-guitar/">Hợp âm guitar</a></li>
<li id="menu-item-27465" class="menu-item menu-item-type-taxonomy menu-item-object-category menu-item-27465"><a href="https://nhacly.com/category/kien-thuc-am-nhac/">Kiến thức âm nhạc</a></li>
<li id="menu-item-27466" class="menu-item menu-item-type-taxonomy menu-item-object-category menu-item-27466"><a href="https://nhacly.com/category/kien-thuc-nhac-cu/">Kiến thức nhạc cụ</a></li>
<li id="menu-item-27467" class="menu-item menu-item-type-taxonomy menu-item-object-category menu-item-27467"><a href="https://nhacly.com/category/kien-thuc-xay-dung/">Kiến thức xây dựng</a></li>
<li id="menu-item-27471" class="menu-item menu-item-type-taxonomy menu-item-object-category menu-item-27471"><a href="https://nhacly.com/category/nhac-ly-can-ban/">nhạc lý căn bản</a></li>
<li id="menu-item-27472" class="menu-item menu-item-type-taxonomy menu-item-object-category menu-item-27472"><a href="https://nhacly.com/category/nhip-va-phach/">nhịp và phách</a></li>
<li id="menu-item-27474" class="menu-item menu-item-type-taxonomy menu-item-object-category menu-item-27474"><a href="https://nhacly.com/category/phu-kien-guitar/">phụ kiện guitar</a></li>
<li id="menu-item-27475" class="menu-item menu-item-type-taxonomy menu-item-object-category menu-item-27475"><a href="https://nhacly.com/category/tan-man/">tản mạn</a></li>
<li id="menu-item-27476" class="menu-item menu-item-type-taxonomy menu-item-object-category menu-item-27476"><a href="https://nhacly.com/category/tu-hoc-guitar/">Tự học guitar</a></li>
<li id="menu-item-27480" class="menu-item menu-item-type-taxonomy menu-item-object-category menu-item-27480"><a href="https://nhacly.com/category/dan-guitar/">Đàn guitar – Kiến thức về đàn Guitar</a></li>
<li id="menu-item-27482" class="menu-item menu-item-type-taxonomy menu-item-object-category menu-item-27482"><a href="https://nhacly.com/category/cham-ngon-thanh-cong/">châm ngôn thành công</a></li>
<li id="menu-item-28291" class="menu-item menu-item-type-taxonomy menu-item-object-category menu-item-28291"><a href="https://nhacly.com/category/nhung-cau-danh-ngon-hay-bat-hu/">Những câu danh ngôn hay bất hủ</a></li>
<li id="menu-item-29200" class="menu-item menu-item-type-taxonomy menu-item-object-category menu-item-29200"><a href="https://nhacly.com/category/nhung-cau-danh-ngon-hay/">những câu danh ngôn hay</a></li>
</ul></div></div><div id="block-3" class="mg-widget widget_block">
<div class="wp-block-group"><div class="wp-block-group__inner-container is-layout-flow wp-block-group-is-layout-flow">
<h2 class="wp-block-heading">Bài đăng mới</h2>


<ul class="wp-block-latest-posts__list wp-block-latest-posts"><li><a class="wp-block-latest-posts__post-title" href="https://nhacly.com/cach-doc-tiet-tau-la-gi-1647161652/">Thi Thẩm Âm Tiết Tấu Là Gì ? Hướng Dẫn Cách Đọc Tiết Thi Thẩm Âm Tiết Tấu Khối M</a></li>
<li><a class="wp-block-latest-posts__post-title" href="https://nhacly.com/bai-viet-ve-hobby-1647972033/">Top 10 bài viết về sở thích bằng tiếng anh ngắn gọn nhất</a></li>
<li><a class="wp-block-latest-posts__post-title" href="https://nhacly.com/hoc-nhac-ly-co-ban-violin-la-gi-1647175733/">Hướng dẫn cách đọc bản nhạc khi học đàn Violin</a></li>
<li><a class="wp-block-latest-posts__post-title" href="https://nhacly.com/nhac-ly-co-ban-ukulele-la-gi-1647175476/">Những kiến thức cơ bản đàn ukulele bạn cần nắm rõ</a></li>
<li><a class="wp-block-latest-posts__post-title" href="https://nhacly.com/nhac-ly-co-ban-dan-tranh-la-gi-1647175389/">Bí quyết học đàn tranh một cách hiệu quả nhất</a></li>
<li><a class="wp-block-latest-posts__post-title" href="https://nhacly.com/nhac-ly-organ-co-ban-la-gi-1647174269/">Cần chuẩn bị kiến thức cơ bản đàn Organ nào trước khi học?</a></li>
<li><a class="wp-block-latest-posts__post-title" href="https://nhacly.com/nhac-ly-co-ban-thien-kim-la-gi-1647173743/">Nhạc lý cơ bản / Thiên Kim. – Tái bản lần thứ 5. – Thanh Hoá : Nxb. Thanh Hoá, 2018. – 95tr. : Bảng; 27cm</a></li>
<li><a class="wp-block-latest-posts__post-title" href="https://nhacly.com/hoc-nhac-ly-co-ban-ukulele-la-gi-1647173583/">Hợp âm cơ bản đàn ukulele là gì? Cách bấm hợp âm như thế nào?</a></li>
<li><a class="wp-block-latest-posts__post-title" href="https://nhacly.com/nhac-ly-guitar-co-ban-pdf-la-gi-1647173327/">Tải về 25 Tuyệt Phẩm Guitar Cổ Điển Bất Hủ sách miễn phí Pdf • Thư viện Sách hướng dẫn</a></li>
<li><a class="wp-block-latest-posts__post-title" href="https://nhacly.com/nhac-ly-co-ban-cho-ukulele-la-gi-1647173142/">Hợp âm Ukulele là gì? 21 các hợp âm ukulele cơ bản và cách bấm hợp âm ukulele đơn giản ❤️ Bài viết Hợp âm Ukulele là gì? 21 các hợp âm ukulele cơ bản và cách bấm hợp âm ukulele đơn giản – BloghocPiano</a></li>
<li><a class="wp-block-latest-posts__post-title" href="https://nhacly.com/nhac-ly-co-ban-sao-truc-la-gi-1647173069/">Hướng dẫn thổi sáo trúc cho người mới tập chơi – Sáo Trúc Bùi Gia</a></li>
<li><a class="wp-block-latest-posts__post-title" href="https://nhacly.com/nhac-ly-co-ban-thanh-nhac-la-gi-1647172273/">NHẠC LÝ CĂN BẢN</a></li>
<li><a class="wp-block-latest-posts__post-title" href="https://nhacly.com/nhac-ly-co-ban-ngo-ngoc-thang-pdf-la-gi-1647172223/">Tải về Lý Thuyết Và Thực Hành Trên Đàn Guitar sách miễn phí Pdf • Thư viện Sách hướng dẫn</a></li>
<li><a class="wp-block-latest-posts__post-title" href="https://nhacly.com/nhac-ly-co-ban-nhip-phach-la-gi-1647172120/">Nhạc Lý Căn Bản Ngành Thiếu: Nhịp Và Phách | GĐPT Việt Nam</a></li>
<li><a class="wp-block-latest-posts__post-title" href="https://nhacly.com/phan-mem-hoc-nhac-ly-co-ban-la-gi-1647171961/">Kiến Thức Nhạc Lý Là Gì ? Mách Bạn Cách Tự Học Nhạc Lý Cơ Bản Hiệu Quả</a></li>
<li><a class="wp-block-latest-posts__post-title" href="https://nhacly.com/tai-lieu-nhac-ly-co-ban-organ-la-gi-1647171760/">Organ</a></li>
<li><a class="wp-block-latest-posts__post-title" href="https://nhacly.com/nhac-ly-co-ban-ve-hop-am-la-gi-1647170898/">7 lời khuyên học nhạc lý cơ bản cho guitar (phần 2) | Học Gì Đây?</a></li>
<li><a class="wp-block-latest-posts__post-title" href="https://nhacly.com/hoc-nhac-ly-co-ban-guitar-la-gi-1647170723/">Học Nhạc Lý – Cách Tự Cơ Bản Đàn Guitar</a></li>
<li><a class="wp-block-latest-posts__post-title" href="https://nhacly.com/nhac-ly-co-ban-guzheng-la-gi-1647170544/">Nhạc lý cho Guzheng 1: MỘT SỐ KHÁI NIỆM | GUZHENG lessons | Tien Vivy | 古箏 ❤️ Bài viết Nhạc lý cho Guzheng 1: MỘT SỐ KHÁI NIỆM | GUZHENG lessons | Tien Vivy | 古箏 – BloghocPiano.Com</a></li>
<li><a class="wp-block-latest-posts__post-title" href="https://nhacly.com/tu-hoc-nhac-ly-co-ban-ebook-la-gi-1647170114/">Tự Học Nhạc Lý Cơ Bản (Tái Bản 2017) từ Phạm Phương Hoa trong LIT • Thư viện Sách hướng dẫn</a></li>
<li><a class="wp-block-latest-posts__post-title" href="https://nhacly.com/nhac-ly-co-ban-ebook-la-gi-1647170030/">Tự Học Nhạc Lý Cơ Bản (Tái Bản) từ trong LIT • Thư viện Sách hướng dẫn</a></li>
<li><a class="wp-block-latest-posts__post-title" href="https://nhacly.com/huong-dan-nhac-ly-co-ban-trong-fl-studio-la-gi-1647169772/">Đây là cách sử dụng FL Studio cho người mới bắt đầu</a></li>
<li><a class="wp-block-latest-posts__post-title" href="https://nhacly.com/nhac-ly-co-ban-dj-la-gi-1647169420/">[Học DJ cơ bản 2] Các thuật ngữ và thao tác cơ bản ❤️ Bài viết [Học DJ cơ bản 2] Các thuật ngữ và thao tác cơ bản – BloghocPiano.Com</a></li>
<li><a class="wp-block-latest-posts__post-title" href="https://nhacly.com/nhac-ly-co-ban-de-hieu-la-gi-1647169347/">Không biết gì về nhạc lý có học đàn được không ? –</a></li>
<li><a class="wp-block-latest-posts__post-title" href="https://nhacly.com/nhac-ly-co-ban-cho-nguoi-moi-hoc-piano-la-gi-1647169249/">Một số lý thuyết học nhạc lý piano cơ bản cho người mới bắt đầu</a></li>
<li><a class="wp-block-latest-posts__post-title" href="https://nhacly.com/nhac-ly-co-ban-cho-violin-la-gi-1647169080/">Hướng dẫn học đàn Violin căn bản – http://139.180.218.5</a></li>
<li><a class="wp-block-latest-posts__post-title" href="https://nhacly.com/nhac-ly-co-ban-cho-nguoi-moi-hoc-guitar-la-gi-1647168999/">Kiến thức về nhạc lý cơ bản khi học đàn guitar</a></li>
<li><a class="wp-block-latest-posts__post-title" href="https://nhacly.com/nhac-ly-co-ban-cho-nguoi-moi-hoc-la-gi-1647168819/">Kiến thức nhạc lý cơ bản dành cho người mới học</a></li>
<li><a class="wp-block-latest-posts__post-title" href="https://nhacly.com/nhac-ly-co-ban-bai-2-la-gi-1647168224/">Bài 2 : Nhạc Lý Cơ Bản – Nhịp Phách Và Độ Dài Các Nốt Nhạc ❤️ Bài viết Bài 2 : Nhạc Lý Cơ Bản – Nhịp Phách Và Độ Dài Các Nốt Nhạc – BloghocPiano.Com</a></li>
<li><a class="wp-block-latest-posts__post-title" href="https://nhacly.com/nhac-ly-co-ban-guitar-pdf-la-gi-1647167540/">Nhạc Lý cơ bản – Vương Quốc Đồ Ngủ</a></li>
<li><a class="wp-block-latest-posts__post-title" href="https://nhacly.com/nhac-ly-co-ban-pdf-la-gi-1647167275/">Tải về Nhạc Lý Căn Bản (Kèm CD) sách miễn phí Pdf • Thư viện Sách hướng dẫn</a></li>
<li><a class="wp-block-latest-posts__post-title" href="https://nhacly.com/moi-nguoi-tim-kiem-chu-de-nhac-ly-co-ban-la-gi-1647167099/">Sống Cùng Bệnh Viêm Khớp: Thông Tin Sức Khỏe Cơ Bản cho Quý Vị và Gia Đình (Living With Arthritis: Health Information Basics for You and Your Family)</a></li>
<li><a class="wp-block-latest-posts__post-title" href="https://nhacly.com/chuyen-dong-not-nen-la-gi-1647166915/">Chuyển Ðộng nốt nền (Root motion) của Hợp Âm ❤️ Bài viết Chuyển Ðộng nốt nền (Root motion) của Hợp Âm – BloghocPiano.Com</a></li>
<li><a class="wp-block-latest-posts__post-title" href="https://nhacly.com/phan-tich-dien-tien-buoc-di-cua-cac-hop-am-la-gi-1647166828/">Phân tích chuyển hợp âm đúng nhịp trong bước đi của hợp âm ❤️ Bài viết Phân tích chuyển hợp âm đúng nhịp trong bước đi của hợp âm – BloghocPiano.Com</a></li>
<li><a class="wp-block-latest-posts__post-title" href="https://nhacly.com/cach-chuyen-hop-am-trong-bai-hat-la-gi-1647166743/">Cách chuyển hợp âm trong bài hát : Hướng dẫn cách đặt hợp âm cho bài hát ❤️ Bài viết Cách chuyển hợp âm trong bài hát : Hướng dẫn cách đặt hợp âm cho bài hát – BloghocPiano.Com</a></li>
<li><a class="wp-block-latest-posts__post-title" href="https://nhacly.com/giai-ket-la-gi-1647166657/">Tìm hiểu về giải oan cắt kết</a></li>
<li><a class="wp-block-latest-posts__post-title" href="https://nhacly.com/nhung-not-ngoai-hop-am-la-gi-1647166569/">Những Nốt Ngoại Hợp Âm( Nốt qua, nốt thêu, nốt thoát, nốt nhấn, nốt hoãn âm, nốt treo âm, nốt tiền âm, nốt đổi âm, nốt ngoại hợp âm) ❤️ Bài viết Những Nốt Ngoại Hợp Âm( Nốt qua, nốt thêu, nốt thoát, n</a></li>
<li><a class="wp-block-latest-posts__post-title" href="https://nhacly.com/hop-am-7-thu-vm7-la-gi-1647166321/">Thế nào là hợp âm 7 át</a></li>
<li><a class="wp-block-latest-posts__post-title" href="https://nhacly.com/hop-am-7-truong-vmaj-7-la-gi-1647166229/">Cách đánh Bolero Điêu Chương</a></li>
<li><a class="wp-block-latest-posts__post-title" href="https://nhacly.com/hop-am-tang-la-gi-1647165794/">hợp âm tăng, aug và cách ứng dụng thực tế</a></li>
<li><a class="wp-block-latest-posts__post-title" href="https://nhacly.com/hop-am-sus-la-gi-1647165705/">HỢP ÂM SUS VÀ CÁCH SỬ DỤNG – SUSPENDED Guitar Chords</a></li>
<li><a class="wp-block-latest-posts__post-title" href="https://nhacly.com/hop-am-13-la-gi-1647165621/">Hợp âm 13 – cấu tạo và cách áp dụng thực tế.</a></li>
<li><a class="wp-block-latest-posts__post-title" href="https://nhacly.com/hop-am-11-la-gi-1647165533/">HỢP ÂM GUITAR MỞ RỘNG – HỢP ÂM 9 – HỢP ÂM 11 – HỢP ÂM 13 – Extended Chords 9th 11th 13th</a></li>
<li><a class="wp-block-latest-posts__post-title" href="https://nhacly.com/nhac-ly-co-ban-ve-hop-am-la-gi-1647165446/">Tìm hiểu về các hợp âm trong quá trình học lý thuyết âm nhạc</a></li>
<li><a class="wp-block-latest-posts__post-title" href="https://nhacly.com/cach-viet-hop-am-o-the-dao-123-la-gi-1647165359/">Cách viết Hợp Âm ở Thể Ðảo – 4 CÔNG DỤNG CỦA HỢP ÂM ĐẢO BẠN ĐÃ BIẾT</a></li>
<li><a class="wp-block-latest-posts__post-title" href="https://nhacly.com/chu-ky-quang-5-va-hop-am-tuong-ung-la-gi-1647165283/">Hướng dẫn đặt hợp âm cho một bản nhạc có nốt</a></li>
<li><a class="wp-block-latest-posts__post-title" href="https://nhacly.com/nhung-kien-thuc-se-duoc-update-trong-thoi-gian-toi-la-gi-1647165187/">Update là gì? Cập nhật là gì? Các câu hỏi thường gặp – Wiki Máy Tính</a></li>
<li><a class="wp-block-latest-posts__post-title" href="https://nhacly.com/cac-dieu-thuc-trong-am-nhac-la-gi-1647165100/">Điệu thức.</a></li>
<li><a class="wp-block-latest-posts__post-title" href="https://nhacly.com/cac-hop-am-co-ban-piano-la-gi-1647165017/">Tìm hiểu về hợp âm đàn piano và các hợp âm đàn piano cơ bản</a></li>
<li><a class="wp-block-latest-posts__post-title" href="https://nhacly.com/giong-song-song-giong-cung-ten-la-gi-1647164949/">Giọng song song với giọng La thứ là giọng gì</a></li>
<li><a class="wp-block-latest-posts__post-title" href="https://nhacly.com/xac-dinh-giong-bai-hat-la-gi-1647164853/">Cách Xác Định Giọng Trưởng Và Thứ ? Hướng Dẫn Xác Định Giọng Của Bài Hát</a></li>
<li><a class="wp-block-latest-posts__post-title" href="https://nhacly.com/am-giai-thu-la-gi-1647164761/">NHẠCLÝ #40 ❤️ ÂM GIAI THỨ LÀ GÌ? ÂM GIAI THỨ TỰ NHIÊN, ÂM GIAI THỨ HÒA THANH, ÂM GIAI THỨ GIAI ĐIỆU</a></li>
<li><a class="wp-block-latest-posts__post-title" href="https://nhacly.com/am-giai-cau-tao-cua-am-giai-la-gi-1647164589/">Âm giai là gì? Cấu tạo của âm giai trưởng và thứ – Kênh iTV</a></li>
<li><a class="wp-block-latest-posts__post-title" href="https://nhacly.com/hop-am-9-la-gi-1647164501/">Cấu tạo của hợp âm 9, 11, 13 và các hợp âm add9, hợp âm add11, hợp âm add13 ❤️ Bài viết Cấu tạo của hợp âm 9, 11, 13 và các hợp âm add9, hợp âm add11, hợp âm add13 – BloghocPiano.Com</a></li>
<li><a class="wp-block-latest-posts__post-title" href="https://nhacly.com/cac-the-dao-cua-hop-am-la-gi-1647164412/">Hợp âm đảo là gì – các hợp âm đảo bass – hợp âm đảo piano – hợp âm đảo organ</a></li>
<li><a class="wp-block-latest-posts__post-title" href="https://nhacly.com/cach-tinh-hop-am-7-la-gi-1647164326/">Hợp âm 7 át là gì – Dominant 7th Chord (V7) – Dẫn chứng ❤️ Bài viết Hợp âm 7 át là gì – Dominant 7th Chord (V7) – Dẫn chứng – BloghocPiano.Com</a></li>
<li><a class="wp-block-latest-posts__post-title" href="https://nhacly.com/cau-tao-hop-am-7-la-gi-1647164153/">HỢP ÂM 7 ❤️ CẤU TẠO CỦA HỢP ÂM 7 TRONG ÂM GIAI TRƯỞNG & ÂM GIAI THỨ</a></li>
<li><a class="wp-block-latest-posts__post-title" href="https://nhacly.com/hop-am-dao-la-gi-1647163722/">Hợp âm đảo và 4 công năng chính | Luật Sư Nguyễn Hữu Phước</a></li>
<li><a class="wp-block-latest-posts__post-title" href="https://nhacly.com/hop-am-la-gi-cac-loai-hop-am-la-gi-1647163643/">Hợp âm Là Gì Chú Thích Hợp âm Là Gì Có Mấy Loại Hợp âm – Top Công Ty, địa điểm, Shop, Dịch Vụ Tại Bình Dương</a></li>
<li><a class="wp-block-latest-posts__post-title" href="https://nhacly.com/quang-thuan-quang-nghich-la-gi-1647163562/">Tìm hiểu về quãng trong âm nhạc | http://139.180.218.5</a></li>
<li><a class="wp-block-latest-posts__post-title" href="https://nhacly.com/quang-8-la-gi-1647163461/">Quãng tám.</a></li>
<li><a class="wp-block-latest-posts__post-title" href="https://nhacly.com/quang-7-la-gi-1647163376/">NHẠCLÝ #25 QUÃNG LÀ GÌ TRONG ÂM NHẠC? KHÁI NIỆM, CÁCH TÍNH, CÁC LOẠI QUÃNG TRONG ÂM NHẠC</a></li>
<li><a class="wp-block-latest-posts__post-title" href="https://nhacly.com/quang-6-la-gi-1647163290/">NHẠCLÝ #25❤️ QUÃNG LÀ GÌ TRONG ÂM NHẠC? KHÁI NIỆM, CÁCH TÍNH, CÁC LOẠI QUÃNG TRONG ÂM NHẠC</a></li>
<li><a class="wp-block-latest-posts__post-title" href="https://nhacly.com/quang-4-dung-la-gi-1647163134/">Bài Học Về Quãng Là Gì ? Có Bao Nhiêu Quãng 8 Trong Thang Âm Đầy Đủ</a></li>
<li><a class="wp-block-latest-posts__post-title" href="https://nhacly.com/quang-3-la-gi-1647163030/">NHẠCLÝ #28❤️ QUÃNG 3 TRƯỞNG, QUÃNG 3 THỨ, QUÃNG 3 TĂNG, QUÃNG 3 GIẢM TRONG ÂM NHẠC</a></li>
<li><a class="wp-block-latest-posts__post-title" href="https://nhacly.com/quang-2-la-gi-1647162943/">NHẠCLÝ #27❤️ QUÃNG 2 TRƯỞNG, QUÃNG 2 THỨ, QUÃNG 2 TĂNG, QUÃNG 2 GIẢM TRONG ÂM NHẠC</a></li>
<li><a class="wp-block-latest-posts__post-title" href="https://nhacly.com/nua-cung-di-nua-cung-dong-la-gi-1647162857/">Học Nhạc Lý Cơ Bản Chương 1</a></li>
<li><a class="wp-block-latest-posts__post-title" href="https://nhacly.com/quang-giai-dieu-quang-hoa-am-la-gi-1647162775/">Quãng là gì có mấy loại quãng</a></li>
<li><a class="wp-block-latest-posts__post-title" href="https://nhacly.com/quang-len-va-quang-xuong-la-gi-1647162599/">NHẠCLÝ #34❤️ QUÃNG ÂM NHẠC – TÍNH CHẤT CỦA QUÃNG TRONG ÂM NHẠC – XEM NGAY ĐỂ HIỂU ĐẦY ĐỦ NHẤT</a></li>
<li><a class="wp-block-latest-posts__post-title" href="https://nhacly.com/dong-am-va-trung-am-la-gi-1647162512/">Đồng âm (âm nhạc).</a></li>
<li><a class="wp-block-latest-posts__post-title" href="https://nhacly.com/quang-dao-quang-don-quang-kep-la-gi-1647162348/">Quãng và cảm xúc âm nhạc cần biết | Luật Sư Nguyễn Hữu Phước</a></li>
<li><a class="wp-block-latest-posts__post-title" href="https://nhacly.com/cung-va-nua-cung-la-gi-1647162080/">Khái niệm cung và nửa cung là gì – Công thức cung và nửa cung – Quy tắc cung và nửa cung – Bestshop</a></li>
<li><a class="wp-block-latest-posts__post-title" href="https://nhacly.com/cac-loai-nhip-trong-am-nhac-la-gi-1647161824/">Các loại nhịp trong âm nhạc? Số chỉ nhịp là gì? Nhịp 2/4, 3/4, 2/8/, 3/8, 4/4, và nhịp 6/8 ❤️ Bài viết Các loại nhịp trong âm nhạc? Số chỉ nhịp là gì? Nhịp 2/4, 3/4, 2/8/, 3/8, 4/4, và nhịp 6/8 – Blog</a></li>
<li><a class="wp-block-latest-posts__post-title" href="https://nhacly.com/tiet-tau-la-gi-1647161560/">Tiết tấu là gì? Tiết tấu trong âm nhạc là gì? Hướng dẫn cách đọc tiết tấu, Cách gõ đệm, cách gõ nhịp phách tiết tấu ❤️ Bài viết Tiết tấu là gì? Tiết tấu trong âm nhạc là gì? Hướng dẫn cách đọc tiết tấ</a></li>
<li><a class="wp-block-latest-posts__post-title" href="https://nhacly.com/cac-ky-hieu-thuong-dung-trong-am-nhac-la-gi-1647161482/">Các kí hiệu thường dùng trong âm nhạc – Tất cả các kí hiệu âm nhạc cơ bản</a></li>
<li><a class="wp-block-latest-posts__post-title" href="https://nhacly.com/cam-am-la-gi-1647161313/">Cảm âm là gì? Cách tăng khả năng cảm âm hiệu quả – Kênh iTV</a></li>
<li><a class="wp-block-latest-posts__post-title" href="https://nhacly.com/am-vuc-la-gi-1647161215/">Âm vực.</a></li>
<li><a class="wp-block-latest-posts__post-title" href="https://nhacly.com/dau-cham-doi-la-gi-1647161128/">Dấu chấm dôi.</a></li>
<li><a class="wp-block-latest-posts__post-title" href="https://nhacly.com/dau-hoi-tau-la-gi-1647161052/">Các loại dấu viết tắt trong hệ thống ghi âm bằng nốt nhạc</a></li>
<li><a class="wp-block-latest-posts__post-title" href="https://nhacly.com/dau-hoan-dau-coda-khung-thay-doi-la-gi-1647160987/">Các Loại Dấu Nhắc Lại – Ký Hiệu Lặp Lại Và Kết Thúc Trong Bản Nhạc</a></li>
<li><a class="wp-block-latest-posts__post-title" href="https://nhacly.com/dau-hoa-la-gi-1647160788/">NHẠCLÝ #36❤️ DẤU HÓA LÀ GÌ? CÓ MẤY LOẠI DẤU HÓA – DẤU HÓA BẤT THƯỜNG & DẤU HÓA THEO KHÓA</a></li>
<li><a class="wp-block-latest-posts__post-title" href="https://nhacly.com/dau-cham-luu-dau-mat-ngong-la-gi-1647160697/">Dấu mắt ngỗng.</a></li>
<li><a class="wp-block-latest-posts__post-title" href="https://nhacly.com/dau-luyen-la-gi-1647160610/">Dấu luyến.</a></li>
<li><a class="wp-block-latest-posts__post-title" href="https://nhacly.com/dau-noi-la-gi-1647160523/">Dấu nối (âm nhạc).</a></li>
<li><a class="wp-block-latest-posts__post-title" href="https://nhacly.com/am-sac-la-gi-1647160353/">Âm sắc là gì- cách làm sáo tiêu</a></li>
<li><a class="wp-block-latest-posts__post-title" href="https://nhacly.com/giai-dieu-la-gi-1647160309/">Giai Điệu Là Gì – Nghĩa Của Từ Giai Điệu Trong Tiếng Việt</a></li>
<li><a class="wp-block-latest-posts__post-title" href="https://nhacly.com/phach-la-gi-1647160186/">Phách Là Gì – Tìm Hiểu Về Nhịp Và Phách</a></li>
<li><a class="wp-block-latest-posts__post-title" href="https://nhacly.com/khuong-nhac-la-gi-1647159833/">Khuông nhạc là gì? Dòng kẻ khuông nhạc và dòng kẻ phụ</a></li>
<li><a class="wp-block-latest-posts__post-title" href="https://nhacly.com/cac-dac-tinh-cua-am-nhac-la-gi-1647159663/">Âm thanh là gì? 4 đặc tính của âm thanh (cao độ, trường độ, cường độ, âm sắc)</a></li>
<li><a class="wp-block-latest-posts__post-title" href="https://nhacly.com/tan-so-va-cao-do-la-gi-1647159575/">Cao độ là gì? Mối quan hệ giữa cao độ và tần số – Kênh iTV</a></li>
<li><a class="wp-block-latest-posts__post-title" href="https://nhacly.com/tempo-la-gi-1647159492/">Tempo là gì? Tempo trong âm nhạc (Nhịp độ trong âm nhạc) ❤️ Bài viết Tempo là gì? Tempo trong âm nhạc (Nhịp độ trong âm nhạc) – BloghocPiano.Com</a></li>
<li><a class="wp-block-latest-posts__post-title" href="https://nhacly.com/cuong-do-la-gi-1647159408/">Cường độ dòng điện là gì? Công thức tính cường độ dòng điện từ A – Z</a></li>
<li><a class="wp-block-latest-posts__post-title" href="https://nhacly.com/truong-do-la-gi-1647159332/">Trường độ là gì | Trường độ trong âm nhạc | trường độ các nốt nhạc</a></li>
<li><a class="wp-block-latest-posts__post-title" href="https://nhacly.com/am-thanh-la-gi-1647159141/">Tốc độ âm thanh.</a></li>
<li><a class="wp-block-latest-posts__post-title" href="https://nhacly.com/cach-tao-nhip-lay-da-1647061539/">Các thao tác trên ô nhịp</a></li>
<li><a class="wp-block-latest-posts__post-title" href="https://nhacly.com/hat-dung-nhip-la-gi-1646389634/">Cách hát đúng nhịp cơ bản nhất</a></li>
<li><a class="wp-block-latest-posts__post-title" href="https://nhacly.com/nhip-hon-hop-la-gi-1646389460/">NHẠCLÝ #9❤️ NHỊP HỖN HỢP LÀ GÌ?Các Nhịp 5/4,nhịp 5/8,Nhịp 7/4,nhịp 7/8,Nhịp 8/8,10/8, nhịp 11/4,11/8</a></li>
<li><a class="wp-block-latest-posts__post-title" href="https://nhacly.com/go-theo-nhip-la-gi-1646389200/">Vỗ tay theo nhịp 2/4, nhịp 3/4, vỗ tay theo phách và cách giữ nhịp khi hát ❤️ Bài viết Vỗ tay theo nhịp 2/4, nhịp 3/4, vỗ tay theo phách và cách giữ nhịp khi hát – BloghocPiano.Com</a></li>
<li><a class="wp-block-latest-posts__post-title" href="https://nhacly.com/nhip-trong-guitar-la-gi-1646389030/">Làm sao để giữ đúng nhịp khi chơi Guitar – Trung Tâm Âm Nhạc Việt Thương</a></li>
<li><a class="wp-block-latest-posts__post-title" href="https://nhacly.com/nhip-guitar-la-gi-1646388682/">Các bước học guitar đệm hát cho người chưa biết gì</a></li>
</ul></div></div>
</div><div id="block-9" class="mg-widget widget_block">
<div class="wp-block-group"><div class="wp-block-group__inner-container is-layout-flow wp-block-group-is-layout-flow">
<h2 class="wp-block-heading">Chủ đề quan tâm</h2>
</div></div>
</div><div id="block-7" class="mg-widget widget_block widget_tag_cloud"><p class="wp-block-tag-cloud"><a href="https://nhacly.com/tag/guitar/" class="tag-cloud-link tag-link-6 tag-link-position-1" style="font-size: 8pt;" aria-label="Guitar (1 mục)">Guitar</a>
<a href="https://nhacly.com/tag/piano/" class="tag-cloud-link tag-link-22 tag-link-position-2" style="font-size: 8pt;" aria-label="piano (1 mục)">piano</a></p></div><div id="block-4" class="mg-widget widget_block">
<div class="wp-block-group"><div class="wp-block-group__inner-container is-layout-flow wp-block-group-is-layout-flow">
<h2 class="wp-block-heading">Kiến thức guitar</h2>
</div></div>
</div><div id="nav_menu-5" class="mg-widget widget_nav_menu"><div class="menu-menu-guitar-container"><ul id="menu-menu-guitar" class="menu"><li id="menu-item-2735" class="menu-item menu-item-type-taxonomy menu-item-object-category menu-item-2735"><a href="https://nhacly.com/category/cach-bam-hop-am-guitar/">Cách bấm hợp âm guitar</a></li>
<li id="menu-item-2736" class="menu-item menu-item-type-taxonomy menu-item-object-category menu-item-2736"><a href="https://nhacly.com/category/hop-am-guitar/">Hợp âm guitar</a></li>
<li id="menu-item-2737" class="menu-item menu-item-type-taxonomy menu-item-object-category menu-item-2737"><a href="https://nhacly.com/category/tu-hoc-guitar/">Tự học guitar</a></li>
<li id="menu-item-2738" class="menu-item menu-item-type-taxonomy menu-item-object-category menu-item-2738"><a href="https://nhacly.com/category/dan-guitar/">Đàn guitar – Kiến thức về đàn Guitar</a></li>
<li id="menu-item-3794" class="menu-item menu-item-type-taxonomy menu-item-object-category menu-item-3794"><a href="https://nhacly.com/category/phu-kien-guitar/">Phụ kiện guitar</a></li>
</ul></div></div><div id="newsup_posts_list-3" class="mg-widget mg-posts-sec mg-posts-modul-2">        <div class="mg-posts-sec mg-posts-modul-2">
                             
                <div class="mg-sec-title">
                <!-- mg-sec-title -->
                <h4>Thông tin cần biết</h4>
                </div>
                                                    <!-- mg-posts-sec-inner -->
            <div class="mg-posts-sec-inner row">
                                                <!-- small-list-post -->
                            <div class="small-list-post col-lg-6 col-md-6 col-sm-6 col-xs-12  mr-bot20">
                                <ul>
                                    <li class="small-post clearfix">
                                        <!-- small_post -->
                                                                                <div class="img-small-post">
                                            <a href="https://nhacly.com/doan-trang-la-gi-1653042654/">
                                                                                                    <img src="https://nhacly.com/wp-content/uploads/2022/05/gai-doan-trang-la-gi-150x150.png" alt="‘đoan trang’ là gì? – Cùng giải nghĩa từ đoan trang">
                                                                                            </a>
                                            <!-- img-small-post -->
                                        </div>
                                        <!-- // img-small-post -->
                                                                                <div class="small-post-content">
                                            <div class="mg-blog-category"> 
                                                <a class="newsup-categories category-color-1" href="https://nhacly.com/category/thuat-ngu-doi-thuong/" alt="View all posts in Thuật ngữ đời thường"> 
                                 Thuật ngữ đời thường
                             </a>                                            </div>
                                            <!-- small-post-content -->
                                            <h5 class="title"><a href="https://nhacly.com/doan-trang-la-gi-1653042654/">‘đoan trang’ là gì? – Cùng giải nghĩa từ đoan trang</a></h5>
                                            <!-- // title_small_post -->
                                        </div>
                                        <!-- // small-post-content -->
                                    </li>
                                    <!-- // small_post -->
                                </ul>  
                            </div>

                                                        <!-- small-list-post -->
                            <div class="small-list-post col-lg-6 col-md-6 col-sm-6 col-xs-12  mr-bot20">
                                <ul>
                                    <li class="small-post clearfix">
                                        <!-- small_post -->
                                                                                <div class="img-small-post">
                                            <a href="https://nhacly.com/wood-veneer-la-gi-1654249617/">
                                                                                                    <img src="https://nhacly.com/wp-content/uploads/2022/06/veneer-soi-Hoang-Hung-Pro-Thanh-Hoa-150x150.jpg" alt="VENEER LÀ LOẠI GỖ GÌ? NÊN HAY KHÔNG NÊN SỬ DỤNG VENEER? – Công ty vật tư quảng cáo – Nội thất Hoàng Hưng">
                                                                                            </a>
                                            <!-- img-small-post -->
                                        </div>
                                        <!-- // img-small-post -->
                                                                                <div class="small-post-content">
                                            <div class="mg-blog-category"> 
                                                <a class="newsup-categories category-color-1" href="https://nhacly.com/category/thuat-ngu-doi-thuong/" alt="View all posts in Thuật ngữ đời thường"> 
                                 Thuật ngữ đời thường
                             </a>                                            </div>
                                            <!-- small-post-content -->
                                            <h5 class="title"><a href="https://nhacly.com/wood-veneer-la-gi-1654249617/">VENEER LÀ LOẠI GỖ GÌ? NÊN HAY KHÔNG NÊN SỬ DỤNG VENEER? – Công ty vật tư quảng cáo – Nội thất Hoàng Hưng</a></h5>
                                            <!-- // title_small_post -->
                                        </div>
                                        <!-- // small-post-content -->
                                    </li>
                                    <!-- // small_post -->
                                </ul>  
                            </div>

                                                        <!-- small-list-post -->
                            <div class="small-list-post col-lg-6 col-md-6 col-sm-6 col-xs-12  mr-bot20">
                                <ul>
                                    <li class="small-post clearfix">
                                        <!-- small_post -->
                                                                                <div class="img-small-post">
                                            <a href="https://nhacly.com/vat-lieu-bakelite-la-gi-1654249435/">
                                                                                                    <img src="https://nhacly.com/wp-content/uploads/2022/06/san-xuat-tam-bakelite-150x150.jpg" alt="Tấm nhựa Bakelite là gì? Các ứng dụng của phíp cam Bakelite">
                                                                                            </a>
                                            <!-- img-small-post -->
                                        </div>
                                        <!-- // img-small-post -->
                                                                                <div class="small-post-content">
                                            <div class="mg-blog-category"> 
                                                <a class="newsup-categories category-color-1" href="https://nhacly.com/category/thuat-ngu-doi-thuong/" alt="View all posts in Thuật ngữ đời thường"> 
                                 Thuật ngữ đời thường
                             </a>                                            </div>
                                            <!-- small-post-content -->
                                            <h5 class="title"><a href="https://nhacly.com/vat-lieu-bakelite-la-gi-1654249435/">Tấm nhựa Bakelite là gì? Các ứng dụng của phíp cam Bakelite</a></h5>
                                            <!-- // title_small_post -->
                                        </div>
                                        <!-- // small-post-content -->
                                    </li>
                                    <!-- // small_post -->
                                </ul>  
                            </div>

                                                        <!-- small-list-post -->
                            <div class="small-list-post col-lg-6 col-md-6 col-sm-6 col-xs-12  mr-bot20">
                                <ul>
                                    <li class="small-post clearfix">
                                        <!-- small_post -->
                                                                                <div class="img-small-post">
                                            <a href="https://nhacly.com/van-thang-la-gi-1654249350/">
                                                                                                    <img src="https://nhacly.com/wp-content/uploads/2022/02/cropped-logo-1-150x150.png" alt="Vận thăng là gì và cấu tạo, nguyên tắc hoạt động của vận thăng nâng hàng | Máy xây dựng Việt Trung">
                                                                                            </a>
                                            <!-- img-small-post -->
                                        </div>
                                        <!-- // img-small-post -->
                                                                                <div class="small-post-content">
                                            <div class="mg-blog-category"> 
                                                <a class="newsup-categories category-color-1" href="https://nhacly.com/category/thuat-ngu-doi-thuong/" alt="View all posts in Thuật ngữ đời thường"> 
                                 Thuật ngữ đời thường
                             </a>                                            </div>
                                            <!-- small-post-content -->
                                            <h5 class="title"><a href="https://nhacly.com/van-thang-la-gi-1654249350/">Vận thăng là gì và cấu tạo, nguyên tắc hoạt động của vận thăng nâng hàng | Máy xây dựng Việt Trung</a></h5>
                                            <!-- // title_small_post -->
                                        </div>
                                        <!-- // small-post-content -->
                                    </li>
                                    <!-- // small_post -->
                                </ul>  
                            </div>

                                                        <!-- small-list-post -->
                            <div class="small-list-post col-lg-6 col-md-6 col-sm-6 col-xs-12  mr-bot20">
                                <ul>
                                    <li class="small-post clearfix">
                                        <!-- small_post -->
                                                                                <div class="img-small-post">
                                            <a href="https://nhacly.com/vai-habutai-la-vai-gi-1654249174/">
                                                                                                    <img src="https://nhacly.com/wp-content/uploads/2022/06/vai-habutai-la-vai-gi-150x150.jpg" alt="Vải habutai là gì ? ƯU NHƯỢC điểm và cách nhận biết habutai">
                                                                                            </a>
                                            <!-- img-small-post -->
                                        </div>
                                        <!-- // img-small-post -->
                                                                                <div class="small-post-content">
                                            <div class="mg-blog-category"> 
                                                <a class="newsup-categories category-color-1" href="https://nhacly.com/category/thuat-ngu-doi-thuong/" alt="View all posts in Thuật ngữ đời thường"> 
                                 Thuật ngữ đời thường
                             </a>                                            </div>
                                            <!-- small-post-content -->
                                            <h5 class="title"><a href="https://nhacly.com/vai-habutai-la-vai-gi-1654249174/">Vải habutai là gì ? ƯU NHƯỢC điểm và cách nhận biết habutai</a></h5>
                                            <!-- // title_small_post -->
                                        </div>
                                        <!-- // small-post-content -->
                                    </li>
                                    <!-- // small_post -->
                                </ul>  
                            </div>

                                                        <!-- small-list-post -->
                            <div class="small-list-post col-lg-6 col-md-6 col-sm-6 col-xs-12  mr-bot20">
                                <ul>
                                    <li class="small-post clearfix">
                                        <!-- small_post -->
                                                                                <div class="img-small-post">
                                            <a href="https://nhacly.com/vo-lau-la-gi-1654249085/">
                                                                                                    <img src="https://nhacly.com/wp-content/uploads/2022/06/tim-hieu-tri-vo-lau-va-tam-vo-lau-hoc-trong-giao-ly-dao-phat-3-1155-150x150.jpg" alt="Tìm hiểu trí vô lậu và tam vô lậu học trong giáo lý đạo Phật">
                                                                                            </a>
                                            <!-- img-small-post -->
                                        </div>
                                        <!-- // img-small-post -->
                                                                                <div class="small-post-content">
                                            <div class="mg-blog-category"> 
                                                <a class="newsup-categories category-color-1" href="https://nhacly.com/category/thuat-ngu-doi-thuong/" alt="View all posts in Thuật ngữ đời thường"> 
                                 Thuật ngữ đời thường
                             </a>                                            </div>
                                            <!-- small-post-content -->
                                            <h5 class="title"><a href="https://nhacly.com/vo-lau-la-gi-1654249085/">Tìm hiểu trí vô lậu và tam vô lậu học trong giáo lý đạo Phật</a></h5>
                                            <!-- // title_small_post -->
                                        </div>
                                        <!-- // small-post-content -->
                                    </li>
                                    <!-- // small_post -->
                                </ul>  
                            </div>

                                                        <!-- small-list-post -->
                            <div class="small-list-post col-lg-6 col-md-6 col-sm-6 col-xs-12  mr-bot20">
                                <ul>
                                    <li class="small-post clearfix">
                                        <!-- small_post -->
                                                                                <div class="img-small-post">
                                            <a href="https://nhacly.com/vrf-la-gi-1654249001/">
                                                                                                    <img src="https://nhacly.com/wp-content/uploads/2022/06/2525-150x150.jpg" alt="Hệ thống điều hòa VRV và VRF là gì???">
                                                                                            </a>
                                            <!-- img-small-post -->
                                        </div>
                                        <!-- // img-small-post -->
                                                                                <div class="small-post-content">
                                            <div class="mg-blog-category"> 
                                                <a class="newsup-categories category-color-1" href="https://nhacly.com/category/thuat-ngu-doi-thuong/" alt="View all posts in Thuật ngữ đời thường"> 
                                 Thuật ngữ đời thường
                             </a>                                            </div>
                                            <!-- small-post-content -->
                                            <h5 class="title"><a href="https://nhacly.com/vrf-la-gi-1654249001/">Hệ thống điều hòa VRV và VRF là gì???</a></h5>
                                            <!-- // title_small_post -->
                                        </div>
                                        <!-- // small-post-content -->
                                    </li>
                                    <!-- // small_post -->
                                </ul>  
                            </div>

                                                        <!-- small-list-post -->
                            <div class="small-list-post col-lg-6 col-md-6 col-sm-6 col-xs-12  mr-bot20">
                                <ul>
                                    <li class="small-post clearfix">
                                        <!-- small_post -->
                                                                                <div class="img-small-post">
                                            <a href="https://nhacly.com/victim-facebook-la-gi-1654248926/">
                                                                                                    <img src="https://nhacly.com/wp-content/uploads/2022/06/rip-150x150.png" alt="Link 808 là gì ? Tổng hợp các cách mở khóa 808 đơn giản và miễn phí">
                                                                                            </a>
                                            <!-- img-small-post -->
                                        </div>
                                        <!-- // img-small-post -->
                                                                                <div class="small-post-content">
                                            <div class="mg-blog-category"> 
                                                <a class="newsup-categories category-color-1" href="https://nhacly.com/category/thuat-ngu-doi-thuong/" alt="View all posts in Thuật ngữ đời thường"> 
                                 Thuật ngữ đời thường
                             </a>                                            </div>
                                            <!-- small-post-content -->
                                            <h5 class="title"><a href="https://nhacly.com/victim-facebook-la-gi-1654248926/">Link 808 là gì ? Tổng hợp các cách mở khóa 808 đơn giản và miễn phí</a></h5>
                                            <!-- // title_small_post -->
                                        </div>
                                        <!-- // small-post-content -->
                                    </li>
                                    <!-- // small_post -->
                                </ul>  
                            </div>

                                                        <!-- small-list-post -->
                            <div class="small-list-post col-lg-6 col-md-6 col-sm-6 col-xs-12  mr-bot20">
                                <ul>
                                    <li class="small-post clearfix">
                                        <!-- small_post -->
                                                                                <div class="img-small-post">
                                            <a href="https://nhacly.com/vaseline-intensive-care-deep-restore-la-gi-1654248826/">
                                                                                                    <img src="https://nhacly.com/wp-content/uploads/2022/06/sua-duong-the-vaseline-intensive-care-deep-restore-725ml-1-150x150.jpg" alt="Sữa Dưỡng Thể Vaseline Intensive Care Deep Restore 725ml">
                                                                                            </a>
                                            <!-- img-small-post -->
                                        </div>
                                        <!-- // img-small-post -->
                                                                                <div class="small-post-content">
                                            <div class="mg-blog-category"> 
                                                <a class="newsup-categories category-color-1" href="https://nhacly.com/category/thuat-ngu-doi-thuong/" alt="View all posts in Thuật ngữ đời thường"> 
                                 Thuật ngữ đời thường
                             </a>                                            </div>
                                            <!-- small-post-content -->
                                            <h5 class="title"><a href="https://nhacly.com/vaseline-intensive-care-deep-restore-la-gi-1654248826/">Sữa Dưỡng Thể Vaseline Intensive Care Deep Restore 725ml</a></h5>
                                            <!-- // title_small_post -->
                                        </div>
                                        <!-- // small-post-content -->
                                    </li>
                                    <!-- // small_post -->
                                </ul>  
                            </div>

                                                        <!-- small-list-post -->
                            <div class="small-list-post col-lg-6 col-md-6 col-sm-6 col-xs-12  mr-bot20">
                                <ul>
                                    <li class="small-post clearfix">
                                        <!-- small_post -->
                                                                                <div class="img-small-post">
                                            <a href="https://nhacly.com/unipower-la-gi-1654248752/">
                                                                                                    <img src="https://nhacly.com/wp-content/uploads/2022/06/ban-hang-150x150.jpg" alt="Kiểu bán hàng kỳ lạ của Công ty Unicity – Kỳ 3: Bán vé mời tham dự quảng bá sản phẩm">
                                                                                            </a>
                                            <!-- img-small-post -->
                                        </div>
                                        <!-- // img-small-post -->
                                                                                <div class="small-post-content">
                                            <div class="mg-blog-category"> 
                                                <a class="newsup-categories category-color-1" href="https://nhacly.com/category/thuat-ngu-doi-thuong/" alt="View all posts in Thuật ngữ đời thường"> 
                                 Thuật ngữ đời thường
                             </a>                                            </div>
                                            <!-- small-post-content -->
                                            <h5 class="title"><a href="https://nhacly.com/unipower-la-gi-1654248752/">Kiểu bán hàng kỳ lạ của Công ty Unicity – Kỳ 3: Bán vé mời tham dự quảng bá sản phẩm</a></h5>
                                            <!-- // title_small_post -->
                                        </div>
                                        <!-- // small-post-content -->
                                    </li>
                                    <!-- // small_post -->
                                </ul>  
                            </div>

                                                        <!-- small-list-post -->
                            <div class="small-list-post col-lg-6 col-md-6 col-sm-6 col-xs-12  mr-bot20">
                                <ul>
                                    <li class="small-post clearfix">
                                        <!-- small_post -->
                                                                                <div class="img-small-post">
                                            <a href="https://nhacly.com/ucd-la-gi-1654248667/">
                                                                                                    <img src="https://nhacly.com/wp-content/uploads/2022/06/05-00-00-000-699547a5-37ff-48ca-bb5e-e18bb976bcb6-150x150.jpg" alt="Thiết kế lấy người dùng làm trung tâm: Quy trình và lợi ích">
                                                                                            </a>
                                            <!-- img-small-post -->
                                        </div>
                                        <!-- // img-small-post -->
                                                                                <div class="small-post-content">
                                            <div class="mg-blog-category"> 
                                                <a class="newsup-categories category-color-1" href="https://nhacly.com/category/thuat-ngu-doi-thuong/" alt="View all posts in Thuật ngữ đời thường"> 
                                 Thuật ngữ đời thường
                             </a>                                            </div>
                                            <!-- small-post-content -->
                                            <h5 class="title"><a href="https://nhacly.com/ucd-la-gi-1654248667/">Thiết kế lấy người dùng làm trung tâm: Quy trình và lợi ích</a></h5>
                                            <!-- // title_small_post -->
                                        </div>
                                        <!-- // small-post-content -->
                                    </li>
                                    <!-- // small_post -->
                                </ul>  
                            </div>

                                                        <!-- small-list-post -->
                            <div class="small-list-post col-lg-6 col-md-6 col-sm-6 col-xs-12  mr-bot20">
                                <ul>
                                    <li class="small-post clearfix">
                                        <!-- small_post -->
                                                                                <div class="img-small-post">
                                            <a href="https://nhacly.com/ton-moc-la-gi-1654248589/">
                                                                                                    <img src="https://nhacly.com/wp-content/uploads/2022/02/cropped-logo-1-150x150.png" alt="Ý nghĩa cung Tốn mệnh Mộc, xem phong thủy cho người cung Tốn">
                                                                                            </a>
                                            <!-- img-small-post -->
                                        </div>
                                        <!-- // img-small-post -->
                                                                                <div class="small-post-content">
                                            <div class="mg-blog-category"> 
                                                <a class="newsup-categories category-color-1" href="https://nhacly.com/category/thuat-ngu-doi-thuong/" alt="View all posts in Thuật ngữ đời thường"> 
                                 Thuật ngữ đời thường
                             </a>                                            </div>
                                            <!-- small-post-content -->
                                            <h5 class="title"><a href="https://nhacly.com/ton-moc-la-gi-1654248589/">Ý nghĩa cung Tốn mệnh Mộc, xem phong thủy cho người cung Tốn</a></h5>
                                            <!-- // title_small_post -->
                                        </div>
                                        <!-- // small-post-content -->
                                    </li>
                                    <!-- // small_post -->
                                </ul>  
                            </div>

                                                        <!-- small-list-post -->
                            <div class="small-list-post col-lg-6 col-md-6 col-sm-6 col-xs-12  mr-bot20">
                                <ul>
                                    <li class="small-post clearfix">
                                        <!-- small_post -->
                                                                                <div class="img-small-post">
                                            <a href="https://nhacly.com/tinh-cach-thuong-hieu-la-gi-1654248390/">
                                                                                                    <img src="https://nhacly.com/wp-content/uploads/2022/06/axLwiBq-150x150.png" alt="Brand Personality là gì? Bạn đã hiểu đúng về tính cách thương hiệu? | Tomorrow Marketers">
                                                                                            </a>
                                            <!-- img-small-post -->
                                        </div>
                                        <!-- // img-small-post -->
                                                                                <div class="small-post-content">
                                            <div class="mg-blog-category"> 
                                                <a class="newsup-categories category-color-1" href="https://nhacly.com/category/thuat-ngu-doi-thuong/" alt="View all posts in Thuật ngữ đời thường"> 
                                 Thuật ngữ đời thường
                             </a>                                            </div>
                                            <!-- small-post-content -->
                                            <h5 class="title"><a href="https://nhacly.com/tinh-cach-thuong-hieu-la-gi-1654248390/">Brand Personality là gì? Bạn đã hiểu đúng về tính cách thương hiệu? | Tomorrow Marketers</a></h5>
                                            <!-- // title_small_post -->
                                        </div>
                                        <!-- // small-post-content -->
                                    </li>
                                    <!-- // small_post -->
                                </ul>  
                            </div>

                                                        <!-- small-list-post -->
                            <div class="small-list-post col-lg-6 col-md-6 col-sm-6 col-xs-12  mr-bot20">
                                <ul>
                                    <li class="small-post clearfix">
                                        <!-- small_post -->
                                                                                <div class="img-small-post">
                                            <a href="https://nhacly.com/ten-thuc-anh-co-nghia-la-gi-1654248306/">
                                                                                                    <img src="https://nhacly.com/wp-content/uploads/2022/02/cropped-logo-1-150x150.png" alt="Ý nghĩa tên Thục Anh là gì? Tên Thục Anh có ý nghĩa gì hay xem ngay là biết.">
                                                                                            </a>
                                            <!-- img-small-post -->
                                        </div>
                                        <!-- // img-small-post -->
                                                                                <div class="small-post-content">
                                            <div class="mg-blog-category"> 
                                                <a class="newsup-categories category-color-1" href="https://nhacly.com/category/thuat-ngu-doi-thuong/" alt="View all posts in Thuật ngữ đời thường"> 
                                 Thuật ngữ đời thường
                             </a>                                            </div>
                                            <!-- small-post-content -->
                                            <h5 class="title"><a href="https://nhacly.com/ten-thuc-anh-co-nghia-la-gi-1654248306/">Ý nghĩa tên Thục Anh là gì? Tên Thục Anh có ý nghĩa gì hay xem ngay là biết.</a></h5>
                                            <!-- // title_small_post -->
                                        </div>
                                        <!-- // small-post-content -->
                                    </li>
                                    <!-- // small_post -->
                                </ul>  
                            </div>

                                                        <!-- small-list-post -->
                            <div class="small-list-post col-lg-6 col-md-6 col-sm-6 col-xs-12  mr-bot20">
                                <ul>
                                    <li class="small-post clearfix">
                                        <!-- small_post -->
                                                                                <div class="img-small-post">
                                            <a href="https://nhacly.com/truyen-v5-la-gi-1654248220/">
                                                                                                    <img src="https://nhacly.com/wp-content/uploads/2022/02/cropped-logo-1-150x150.png" alt="HƯỚNG DẪN KHAI BÁO CHỨNG TỪ TRÊN PHẦN MỀM ĐIỆN TỬ">
                                                                                            </a>
                                            <!-- img-small-post -->
                                        </div>
                                        <!-- // img-small-post -->
                                                                                <div class="small-post-content">
                                            <div class="mg-blog-category"> 
                                                <a class="newsup-categories category-color-1" href="https://nhacly.com/category/thuat-ngu-doi-thuong/" alt="View all posts in Thuật ngữ đời thường"> 
                                 Thuật ngữ đời thường
                             </a>                                            </div>
                                            <!-- small-post-content -->
                                            <h5 class="title"><a href="https://nhacly.com/truyen-v5-la-gi-1654248220/">HƯỚNG DẪN KHAI BÁO CHỨNG TỪ TRÊN PHẦN MỀM ĐIỆN TỬ</a></h5>
                                            <!-- // title_small_post -->
                                        </div>
                                        <!-- // small-post-content -->
                                    </li>
                                    <!-- // small_post -->
                                </ul>  
                            </div>

                                                        <!-- small-list-post -->
                            <div class="small-list-post col-lg-6 col-md-6 col-sm-6 col-xs-12  mr-bot20">
                                <ul>
                                    <li class="small-post clearfix">
                                        <!-- small_post -->
                                                                                <div class="img-small-post">
                                            <a href="https://nhacly.com/traffic-rank-la-gi-1654248133/">
                                                                                                    <img src="https://nhacly.com/wp-content/uploads/2022/02/cropped-logo-1-150x150.png" alt="Dịch vụ tăng xếp hạng Alexa & Tăng hạng SimilarWeb | ADCViệtNam">
                                                                                            </a>
                                            <!-- img-small-post -->
                                        </div>
                                        <!-- // img-small-post -->
                                                                                <div class="small-post-content">
                                            <div class="mg-blog-category"> 
                                                <a class="newsup-categories category-color-1" href="https://nhacly.com/category/thuat-ngu-doi-thuong/" alt="View all posts in Thuật ngữ đời thường"> 
                                 Thuật ngữ đời thường
                             </a>                                            </div>
                                            <!-- small-post-content -->
                                            <h5 class="title"><a href="https://nhacly.com/traffic-rank-la-gi-1654248133/">Dịch vụ tăng xếp hạng Alexa & Tăng hạng SimilarWeb | ADCViệtNam</a></h5>
                                            <!-- // title_small_post -->
                                        </div>
                                        <!-- // small-post-content -->
                                    </li>
                                    <!-- // small_post -->
                                </ul>  
                            </div>

                                                        <!-- small-list-post -->
                            <div class="small-list-post col-lg-6 col-md-6 col-sm-6 col-xs-12  mr-bot20">
                                <ul>
                                    <li class="small-post clearfix">
                                        <!-- small_post -->
                                                                                <div class="img-small-post">
                                            <a href="https://nhacly.com/tracking-link-la-gi-1654248043/">
                                                                                                    <img src="https://nhacly.com/wp-content/uploads/2022/06/imager_12_3816_700-150x150.jpg" alt="Chủ Đề Tracking Link Là Gì ? Cách Đo Lường Hiệu Quả Chiến Dịch Marketing Đa Kênh">
                                                                                            </a>
                                            <!-- img-small-post -->
                                        </div>
                                        <!-- // img-small-post -->
                                                                                <div class="small-post-content">
                                            <div class="mg-blog-category"> 
                                                <a class="newsup-categories category-color-1" href="https://nhacly.com/category/thuat-ngu-doi-thuong/" alt="View all posts in Thuật ngữ đời thường"> 
                                 Thuật ngữ đời thường
                             </a>                                            </div>
                                            <!-- small-post-content -->
                                            <h5 class="title"><a href="https://nhacly.com/tracking-link-la-gi-1654248043/">Chủ Đề Tracking Link Là Gì ? Cách Đo Lường Hiệu Quả Chiến Dịch Marketing Đa Kênh</a></h5>
                                            <!-- // title_small_post -->
                                        </div>
                                        <!-- // small-post-content -->
                                    </li>
                                    <!-- // small_post -->
                                </ul>  
                            </div>

                                                        <!-- small-list-post -->
                            <div class="small-list-post col-lg-6 col-md-6 col-sm-6 col-xs-12  mr-bot20">
                                <ul>
                                    <li class="small-post clearfix">
                                        <!-- small_post -->
                                                                                <div class="img-small-post">
                                            <a href="https://nhacly.com/tinh-mau-la-gi-1654247781/">
                                                                                                    <img src="https://nhacly.com/wp-content/uploads/2022/06/tinh-mau-2-2-150x150.jpg" alt="Tinh màu là gì? Mua tại địa chỉ nào chất lượng, giá tốt?">
                                                                                            </a>
                                            <!-- img-small-post -->
                                        </div>
                                        <!-- // img-small-post -->
                                                                                <div class="small-post-content">
                                            <div class="mg-blog-category"> 
                                                <a class="newsup-categories category-color-1" href="https://nhacly.com/category/thuat-ngu-doi-thuong/" alt="View all posts in Thuật ngữ đời thường"> 
                                 Thuật ngữ đời thường
                             </a>                                            </div>
                                            <!-- small-post-content -->
                                            <h5 class="title"><a href="https://nhacly.com/tinh-mau-la-gi-1654247781/">Tinh màu là gì? Mua tại địa chỉ nào chất lượng, giá tốt?</a></h5>
                                            <!-- // title_small_post -->
                                        </div>
                                        <!-- // small-post-content -->
                                    </li>
                                    <!-- // small_post -->
                                </ul>  
                            </div>

                                                        <!-- small-list-post -->
                            <div class="small-list-post col-lg-6 col-md-6 col-sm-6 col-xs-12  mr-bot20">
                                <ul>
                                    <li class="small-post clearfix">
                                        <!-- small_post -->
                                                                                <div class="img-small-post">
                                            <a href="https://nhacly.com/thieu-than-bay-vao-nha-la-diem-gi-1654247518/">
                                                                                                    <img src="https://nhacly.com/wp-content/uploads/2022/06/thieu-than-bay-vao-nha-150x150.jpg" alt="Thiêu thân bay vào nhà là điềm gì và cách phòng chống">
                                                                                            </a>
                                            <!-- img-small-post -->
                                        </div>
                                        <!-- // img-small-post -->
                                                                                <div class="small-post-content">
                                            <div class="mg-blog-category"> 
                                                <a class="newsup-categories category-color-1" href="https://nhacly.com/category/thuat-ngu-doi-thuong/" alt="View all posts in Thuật ngữ đời thường"> 
                                 Thuật ngữ đời thường
                             </a>                                            </div>
                                            <!-- small-post-content -->
                                            <h5 class="title"><a href="https://nhacly.com/thieu-than-bay-vao-nha-la-diem-gi-1654247518/">Thiêu thân bay vào nhà là điềm gì và cách phòng chống</a></h5>
                                            <!-- // title_small_post -->
                                        </div>
                                        <!-- // small-post-content -->
                                    </li>
                                    <!-- // small_post -->
                                </ul>  
                            </div>

                                                        <!-- small-list-post -->
                            <div class="small-list-post col-lg-6 col-md-6 col-sm-6 col-xs-12  mr-bot20">
                                <ul>
                                    <li class="small-post clearfix">
                                        <!-- small_post -->
                                                                                <div class="img-small-post">
                                            <a href="https://nhacly.com/thiamethoxam-la-gi-1654247436/">
                                                                                                    <img src="https://nhacly.com/wp-content/uploads/2022/06/hoat-chat-thiamethoxam-la-gi-150x150.jpg" alt="Hoạt chất Thiamethoxam là gì? – Shop Thuốc Diệt Côn Trùng">
                                                                                            </a>
                                            <!-- img-small-post -->
                                        </div>
                                        <!-- // img-small-post -->
                                                                                <div class="small-post-content">
                                            <div class="mg-blog-category"> 
                                                <a class="newsup-categories category-color-1" href="https://nhacly.com/category/thuat-ngu-doi-thuong/" alt="View all posts in Thuật ngữ đời thường"> 
                                 Thuật ngữ đời thường
                             </a>                                            </div>
                                            <!-- small-post-content -->
                                            <h5 class="title"><a href="https://nhacly.com/thiamethoxam-la-gi-1654247436/">Hoạt chất Thiamethoxam là gì? – Shop Thuốc Diệt Côn Trùng</a></h5>
                                            <!-- // title_small_post -->
                                        </div>
                                        <!-- // small-post-content -->
                                    </li>
                                    <!-- // small_post -->
                                </ul>  
                            </div>

                                                        <!-- small-list-post -->
                            <div class="small-list-post col-lg-6 col-md-6 col-sm-6 col-xs-12  mr-bot20">
                                <ul>
                                    <li class="small-post clearfix">
                                        <!-- small_post -->
                                                                                <div class="img-small-post">
                                            <a href="https://nhacly.com/so-serial-chung-thu-so-la-gi-1654247257/">
                                                                                                    <img src="https://nhacly.com/wp-content/uploads/2022/06/kiem-tra-thoi-han-cks-vina-150x150.jpg" alt="Chứng thư số là gì? 3 thông số quan trọng nhất cần ghi nhớ">
                                                                                            </a>
                                            <!-- img-small-post -->
                                        </div>
                                        <!-- // img-small-post -->
                                                                                <div class="small-post-content">
                                            <div class="mg-blog-category"> 
                                                <a class="newsup-categories category-color-1" href="https://nhacly.com/category/thuat-ngu-doi-thuong/" alt="View all posts in Thuật ngữ đời thường"> 
                                 Thuật ngữ đời thường
                             </a>                                            </div>
                                            <!-- small-post-content -->
                                            <h5 class="title"><a href="https://nhacly.com/so-serial-chung-thu-so-la-gi-1654247257/">Chứng thư số là gì? 3 thông số quan trọng nhất cần ghi nhớ</a></h5>
                                            <!-- // title_small_post -->
                                        </div>
                                        <!-- // small-post-content -->
                                    </li>
                                    <!-- // small_post -->
                                </ul>  
                            </div>

                                                        <!-- small-list-post -->
                            <div class="small-list-post col-lg-6 col-md-6 col-sm-6 col-xs-12  mr-bot20">
                                <ul>
                                    <li class="small-post clearfix">
                                        <!-- small_post -->
                                                                                <div class="img-small-post">
                                            <a href="https://nhacly.com/so-77-la-con-gi-1654247169/">
                                                                                                    <img src="https://nhacly.com/wp-content/uploads/2022/06/83-1-150x150.png" alt="Số đề 37 – 77 là con gì? đánh số mấy?">
                                                                                            </a>
                                            <!-- img-small-post -->
                                        </div>
                                        <!-- // img-small-post -->
                                                                                <div class="small-post-content">
                                            <div class="mg-blog-category"> 
                                                <a class="newsup-categories category-color-1" href="https://nhacly.com/category/thuat-ngu-doi-thuong/" alt="View all posts in Thuật ngữ đời thường"> 
                                 Thuật ngữ đời thường
                             </a>                                            </div>
                                            <!-- small-post-content -->
                                            <h5 class="title"><a href="https://nhacly.com/so-77-la-con-gi-1654247169/">Số đề 37 – 77 là con gì? đánh số mấy?</a></h5>
                                            <!-- // title_small_post -->
                                        </div>
                                        <!-- // small-post-content -->
                                    </li>
                                    <!-- // small_post -->
                                </ul>  
                            </div>

                                                        <!-- small-list-post -->
                            <div class="small-list-post col-lg-6 col-md-6 col-sm-6 col-xs-12  mr-bot20">
                                <ul>
                                    <li class="small-post clearfix">
                                        <!-- small_post -->
                                                                                <div class="img-small-post">
                                            <a href="https://nhacly.com/san-nho-co-den-nghia-la-gi-1654247081/">
                                                                                                    <img src="https://nhacly.com/wp-content/uploads/2022/02/cropped-logo-1-150x150.png" alt="Sân Nhỏ Cỏ Đen Nghĩa Là Gì – Trang tin y học thường thức, bệnh và thuốc điều trị – Tra cứu dược liệu Việt Nam">
                                                                                            </a>
                                            <!-- img-small-post -->
                                        </div>
                                        <!-- // img-small-post -->
                                                                                <div class="small-post-content">
                                            <div class="mg-blog-category"> 
                                                <a class="newsup-categories category-color-1" href="https://nhacly.com/category/thuat-ngu-doi-thuong/" alt="View all posts in Thuật ngữ đời thường"> 
                                 Thuật ngữ đời thường
                             </a>                                            </div>
                                            <!-- small-post-content -->
                                            <h5 class="title"><a href="https://nhacly.com/san-nho-co-den-nghia-la-gi-1654247081/">Sân Nhỏ Cỏ Đen Nghĩa Là Gì – Trang tin y học thường thức, bệnh và thuốc điều trị – Tra cứu dược liệu Việt Nam</a></h5>
                                            <!-- // title_small_post -->
                                        </div>
                                        <!-- // small-post-content -->
                                    </li>
                                    <!-- // small_post -->
                                </ul>  
                            </div>

                                                        <!-- small-list-post -->
                            <div class="small-list-post col-lg-6 col-md-6 col-sm-6 col-xs-12  mr-bot20">
                                <ul>
                                    <li class="small-post clearfix">
                                        <!-- small_post -->
                                                                                <div class="img-small-post">
                                            <a href="https://nhacly.com/sat-pha-tham-la-gi-1654246993/">
                                                                                                    <img src="https://nhacly.com/wp-content/uploads/2022/06/cac-sao-tu-vi-4-150x150.jpg" alt="Sát Phá Tham là gì? Cách cục Sát Phá Lang trong lá số tử vi tốt hay xấu?">
                                                                                            </a>
                                            <!-- img-small-post -->
                                        </div>
                                        <!-- // img-small-post -->
                                                                                <div class="small-post-content">
                                            <div class="mg-blog-category"> 
                                                <a class="newsup-categories category-color-1" href="https://nhacly.com/category/thuat-ngu-doi-thuong/" alt="View all posts in Thuật ngữ đời thường"> 
                                 Thuật ngữ đời thường
                             </a>                                            </div>
                                            <!-- small-post-content -->
                                            <h5 class="title"><a href="https://nhacly.com/sat-pha-tham-la-gi-1654246993/">Sát Phá Tham là gì? Cách cục Sát Phá Lang trong lá số tử vi tốt hay xấu?</a></h5>
                                            <!-- // title_small_post -->
                                        </div>
                                        <!-- // small-post-content -->
                                    </li>
                                    <!-- // small_post -->
                                </ul>  
                            </div>

                                                        <!-- small-list-post -->
                            <div class="small-list-post col-lg-6 col-md-6 col-sm-6 col-xs-12  mr-bot20">
                                <ul>
                                    <li class="small-post clearfix">
                                        <!-- small_post -->
                                                                                <div class="img-small-post">
                                            <a href="https://nhacly.com/san-nang-la-gi-1654246919/">
                                                                                                    <img src="https://nhacly.com/wp-content/uploads/2022/06/san-nang-11-150x150.jpg" alt="Sàn nâng là gì? Quy trình lắp đặt có phức tạp không?">
                                                                                            </a>
                                            <!-- img-small-post -->
                                        </div>
                                        <!-- // img-small-post -->
                                                                                <div class="small-post-content">
                                            <div class="mg-blog-category"> 
                                                <a class="newsup-categories category-color-1" href="https://nhacly.com/category/thuat-ngu-doi-thuong/" alt="View all posts in Thuật ngữ đời thường"> 
                                 Thuật ngữ đời thường
                             </a>                                            </div>
                                            <!-- small-post-content -->
                                            <h5 class="title"><a href="https://nhacly.com/san-nang-la-gi-1654246919/">Sàn nâng là gì? Quy trình lắp đặt có phức tạp không?</a></h5>
                                            <!-- // title_small_post -->
                                        </div>
                                        <!-- // small-post-content -->
                                    </li>
                                    <!-- // small_post -->
                                </ul>  
                            </div>

                                                        <!-- small-list-post -->
                            <div class="small-list-post col-lg-6 col-md-6 col-sm-6 col-xs-12  mr-bot20">
                                <ul>
                                    <li class="small-post clearfix">
                                        <!-- small_post -->
                                                                                <div class="img-small-post">
                                            <a href="https://nhacly.com/super-absorbent-polymer-la-gi-1654246824/">
                                                                                                    <img src="https://nhacly.com/wp-content/uploads/2022/06/4-150x150.jpg" alt="Bột SAP là gì? Khái niệm về Super Absorbent Polymer?">
                                                                                            </a>
                                            <!-- img-small-post -->
                                        </div>
                                        <!-- // img-small-post -->
                                                                                <div class="small-post-content">
                                            <div class="mg-blog-category"> 
                                                <a class="newsup-categories category-color-1" href="https://nhacly.com/category/thuat-ngu-doi-thuong/" alt="View all posts in Thuật ngữ đời thường"> 
                                 Thuật ngữ đời thường
                             </a>                                            </div>
                                            <!-- small-post-content -->
                                            <h5 class="title"><a href="https://nhacly.com/super-absorbent-polymer-la-gi-1654246824/">Bột SAP là gì? Khái niệm về Super Absorbent Polymer?</a></h5>
                                            <!-- // title_small_post -->
                                        </div>
                                        <!-- // small-post-content -->
                                    </li>
                                    <!-- // small_post -->
                                </ul>  
                            </div>

                                                        <!-- small-list-post -->
                            <div class="small-list-post col-lg-6 col-md-6 col-sm-6 col-xs-12  mr-bot20">
                                <ul>
                                    <li class="small-post clearfix">
                                        <!-- small_post -->
                                                                                <div class="img-small-post">
                                            <a href="https://nhacly.com/stretch-film-la-gi-1654246732/">
                                                                                                    <img src="https://nhacly.com/wp-content/uploads/2022/02/cropped-logo-1-150x150.png" alt="Màng chít (màng PE, màng film, stretch film) là gì?">
                                                                                            </a>
                                            <!-- img-small-post -->
                                        </div>
                                        <!-- // img-small-post -->
                                                                                <div class="small-post-content">
                                            <div class="mg-blog-category"> 
                                                <a class="newsup-categories category-color-1" href="https://nhacly.com/category/thuat-ngu-doi-thuong/" alt="View all posts in Thuật ngữ đời thường"> 
                                 Thuật ngữ đời thường
                             </a>                                            </div>
                                            <!-- small-post-content -->
                                            <h5 class="title"><a href="https://nhacly.com/stretch-film-la-gi-1654246732/">Màng chít (màng PE, màng film, stretch film) là gì?</a></h5>
                                            <!-- // title_small_post -->
                                        </div>
                                        <!-- // small-post-content -->
                                    </li>
                                    <!-- // small_post -->
                                </ul>  
                            </div>

                                                        <!-- small-list-post -->
                            <div class="small-list-post col-lg-6 col-md-6 col-sm-6 col-xs-12  mr-bot20">
                                <ul>
                                    <li class="small-post clearfix">
                                        <!-- small_post -->
                                                                                <div class="img-small-post">
                                            <a href="https://nhacly.com/smed-la-gi-1654246471/">
                                                                                                    <img src="https://nhacly.com/wp-content/uploads/2022/02/cropped-logo-1-150x150.png" alt="SMED là gì ? Chi tiết các bước thực hiện quy trình SMED 2021 – Trường Tư Vấn Đào Tạo PMS">
                                                                                            </a>
                                            <!-- img-small-post -->
                                        </div>
                                        <!-- // img-small-post -->
                                                                                <div class="small-post-content">
                                            <div class="mg-blog-category"> 
                                                <a class="newsup-categories category-color-1" href="https://nhacly.com/category/thuat-ngu-doi-thuong/" alt="View all posts in Thuật ngữ đời thường"> 
                                 Thuật ngữ đời thường
                             </a>                                            </div>
                                            <!-- small-post-content -->
                                            <h5 class="title"><a href="https://nhacly.com/smed-la-gi-1654246471/">SMED là gì ? Chi tiết các bước thực hiện quy trình SMED 2021 – Trường Tư Vấn Đào Tạo PMS</a></h5>
                                            <!-- // title_small_post -->
                                        </div>
                                        <!-- // small-post-content -->
                                    </li>
                                    <!-- // small_post -->
                                </ul>  
                            </div>

                                                        <!-- small-list-post -->
                            <div class="small-list-post col-lg-6 col-md-6 col-sm-6 col-xs-12  mr-bot20">
                                <ul>
                                    <li class="small-post clearfix">
                                        <!-- small_post -->
                                                                                <div class="img-small-post">
                                            <a href="https://nhacly.com/sinh-tu-van-la-gi-1654246383/">
                                                                                                    <img src="https://nhacly.com/wp-content/uploads/2022/02/cropped-logo-1-150x150.png" alt="Đam Mỹ Sinh Tử Văn Là Gì ? Thuật Ngữ Dùng Trong Đam Mỹ">
                                                                                            </a>
                                            <!-- img-small-post -->
                                        </div>
                                        <!-- // img-small-post -->
                                                                                <div class="small-post-content">
                                            <div class="mg-blog-category"> 
                                                <a class="newsup-categories category-color-1" href="https://nhacly.com/category/thuat-ngu-doi-thuong/" alt="View all posts in Thuật ngữ đời thường"> 
                                 Thuật ngữ đời thường
                             </a>                                            </div>
                                            <!-- small-post-content -->
                                            <h5 class="title"><a href="https://nhacly.com/sinh-tu-van-la-gi-1654246383/">Đam Mỹ Sinh Tử Văn Là Gì ? Thuật Ngữ Dùng Trong Đam Mỹ</a></h5>
                                            <!-- // title_small_post -->
                                        </div>
                                        <!-- // small-post-content -->
                                    </li>
                                    <!-- // small_post -->
                                </ul>  
                            </div>

                                                        <!-- small-list-post -->
                            <div class="small-list-post col-lg-6 col-md-6 col-sm-6 col-xs-12  mr-bot20">
                                <ul>
                                    <li class="small-post clearfix">
                                        <!-- small_post -->
                                                                                <div class="img-small-post">
                                            <a href="https://nhacly.com/sinh-khi-dien-nien-thien-y-phuc-vi-la-gi-1654246300/">
                                                                                                    <img src="https://nhacly.com/wp-content/uploads/2022/06/huong-nha-menh-kham-1024x1024-1-150x150.png" alt="Diên Niên là gì? Tìm hiểu Sinh Khí, Thiên Y, Diên Niên, Phục Vị – Hoozing Blog">
                                                                                            </a>
                                            <!-- img-small-post -->
                                        </div>
                                        <!-- // img-small-post -->
                                                                                <div class="small-post-content">
                                            <div class="mg-blog-category"> 
                                                <a class="newsup-categories category-color-1" href="https://nhacly.com/category/thuat-ngu-doi-thuong/" alt="View all posts in Thuật ngữ đời thường"> 
                                 Thuật ngữ đời thường
                             </a>                                            </div>
                                            <!-- small-post-content -->
                                            <h5 class="title"><a href="https://nhacly.com/sinh-khi-dien-nien-thien-y-phuc-vi-la-gi-1654246300/">Diên Niên là gì? Tìm hiểu Sinh Khí, Thiên Y, Diên Niên, Phục Vị – Hoozing Blog</a></h5>
                                            <!-- // title_small_post -->
                                        </div>
                                        <!-- // small-post-content -->
                                    </li>
                                    <!-- // small_post -->
                                </ul>  
                            </div>

                                                        <!-- small-list-post -->
                            <div class="small-list-post col-lg-6 col-md-6 col-sm-6 col-xs-12  mr-bot20">
                                <ul>
                                    <li class="small-post clearfix">
                                        <!-- small_post -->
                                                                                <div class="img-small-post">
                                            <a href="https://nhacly.com/seal-niem-phong-la-gi-1654246124/">
                                                                                                    <img src="https://nhacly.com/wp-content/uploads/2022/02/cropped-logo-1-150x150.png" alt="Seal Niêm Phong Là Gì? Phân Loại – Giá Thành Và Cách Sử Dụng SP">
                                                                                            </a>
                                            <!-- img-small-post -->
                                        </div>
                                        <!-- // img-small-post -->
                                                                                <div class="small-post-content">
                                            <div class="mg-blog-category"> 
                                                <a class="newsup-categories category-color-1" href="https://nhacly.com/category/thuat-ngu-doi-thuong/" alt="View all posts in Thuật ngữ đời thường"> 
                                 Thuật ngữ đời thường
                             </a>                                            </div>
                                            <!-- small-post-content -->
                                            <h5 class="title"><a href="https://nhacly.com/seal-niem-phong-la-gi-1654246124/">Seal Niêm Phong Là Gì? Phân Loại – Giá Thành Và Cách Sử Dụng SP</a></h5>
                                            <!-- // title_small_post -->
                                        </div>
                                        <!-- // small-post-content -->
                                    </li>
                                    <!-- // small_post -->
                                </ul>  
                            </div>

                                                        <!-- small-list-post -->
                            <div class="small-list-post col-lg-6 col-md-6 col-sm-6 col-xs-12  mr-bot20">
                                <ul>
                                    <li class="small-post clearfix">
                                        <!-- small_post -->
                                                                                <div class="img-small-post">
                                            <a href="https://nhacly.com/robot-cong-nghiep-la-gi-1654245951/">
                                                                                                    <img src="https://nhacly.com/wp-content/uploads/2022/06/linkedin-150x150.png" alt="Robot công nghiệp là gì? và những lợi ích của robot trong thời đại công nghiệp 4.0 | E-TechMart">
                                                                                            </a>
                                            <!-- img-small-post -->
                                        </div>
                                        <!-- // img-small-post -->
                                                                                <div class="small-post-content">
                                            <div class="mg-blog-category"> 
                                                <a class="newsup-categories category-color-1" href="https://nhacly.com/category/thuat-ngu-doi-thuong/" alt="View all posts in Thuật ngữ đời thường"> 
                                 Thuật ngữ đời thường
                             </a>                                            </div>
                                            <!-- small-post-content -->
                                            <h5 class="title"><a href="https://nhacly.com/robot-cong-nghiep-la-gi-1654245951/">Robot công nghiệp là gì? và những lợi ích của robot trong thời đại công nghiệp 4.0 | E-TechMart</a></h5>
                                            <!-- // title_small_post -->
                                        </div>
                                        <!-- // small-post-content -->
                                    </li>
                                    <!-- // small_post -->
                                </ul>  
                            </div>

                                                        <!-- small-list-post -->
                            <div class="small-list-post col-lg-6 col-md-6 col-sm-6 col-xs-12  mr-bot20">
                                <ul>
                                    <li class="small-post clearfix">
                                        <!-- small_post -->
                                                                                <div class="img-small-post">
                                            <a href="https://nhacly.com/refreshing-shower-gel-la-gi-1654245863/">
                                                                                                    <img src="https://nhacly.com/wp-content/uploads/2022/02/cropped-logo-1-150x150.png" alt="Shower gel là gì? Hướng dẫn sử dụng shower gel đúng cách và hiệu quả">
                                                                                            </a>
                                            <!-- img-small-post -->
                                        </div>
                                        <!-- // img-small-post -->
                                                                                <div class="small-post-content">
                                            <div class="mg-blog-category"> 
                                                <a class="newsup-categories category-color-1" href="https://nhacly.com/category/thuat-ngu-doi-thuong/" alt="View all posts in Thuật ngữ đời thường"> 
                                 Thuật ngữ đời thường
                             </a>                                            </div>
                                            <!-- small-post-content -->
                                            <h5 class="title"><a href="https://nhacly.com/refreshing-shower-gel-la-gi-1654245863/">Shower gel là gì? Hướng dẫn sử dụng shower gel đúng cách và hiệu quả</a></h5>
                                            <!-- // title_small_post -->
                                        </div>
                                        <!-- // small-post-content -->
                                    </li>
                                    <!-- // small_post -->
                                </ul>  
                            </div>

                                                        <!-- small-list-post -->
                            <div class="small-list-post col-lg-6 col-md-6 col-sm-6 col-xs-12  mr-bot20">
                                <ul>
                                    <li class="small-post clearfix">
                                        <!-- small_post -->
                                                                                <div class="img-small-post">
                                            <a href="https://nhacly.com/qua-den-bay-vao-nha-la-diem-gi-1654245776/">
                                                                                                    <img src="https://nhacly.com/wp-content/uploads/2022/06/qua-den-bay-vao-nha-150x150.jpg" alt="Quạ đen bay vào nhà có điềm gì? Tốt hay xấu – http://139.180.218.5">
                                                                                            </a>
                                            <!-- img-small-post -->
                                        </div>
                                        <!-- // img-small-post -->
                                                                                <div class="small-post-content">
                                            <div class="mg-blog-category"> 
                                                <a class="newsup-categories category-color-1" href="https://nhacly.com/category/thuat-ngu-doi-thuong/" alt="View all posts in Thuật ngữ đời thường"> 
                                 Thuật ngữ đời thường
                             </a>                                            </div>
                                            <!-- small-post-content -->
                                            <h5 class="title"><a href="https://nhacly.com/qua-den-bay-vao-nha-la-diem-gi-1654245776/">Quạ đen bay vào nhà có điềm gì? Tốt hay xấu – http://139.180.218.5</a></h5>
                                            <!-- // title_small_post -->
                                        </div>
                                        <!-- // small-post-content -->
                                    </li>
                                    <!-- // small_post -->
                                </ul>  
                            </div>

                                                        <!-- small-list-post -->
                            <div class="small-list-post col-lg-6 col-md-6 col-sm-6 col-xs-12  mr-bot20">
                                <ul>
                                    <li class="small-post clearfix">
                                        <!-- small_post -->
                                                                                <div class="img-small-post">
                                            <a href="https://nhacly.com/pre-ico-la-gi-1654245602/">
                                                                                                    <img src="https://nhacly.com/wp-content/uploads/2022/06/cac-giai-doan-cua-ico-150x150.jpg" alt="Kiến thức chung về ICO: Pre-ICO, ICO Crowdsale, Airdop và Bounty là gì?">
                                                                                            </a>
                                            <!-- img-small-post -->
                                        </div>
                                        <!-- // img-small-post -->
                                                                                <div class="small-post-content">
                                            <div class="mg-blog-category"> 
                                                <a class="newsup-categories category-color-1" href="https://nhacly.com/category/thuat-ngu-doi-thuong/" alt="View all posts in Thuật ngữ đời thường"> 
                                 Thuật ngữ đời thường
                             </a>                                            </div>
                                            <!-- small-post-content -->
                                            <h5 class="title"><a href="https://nhacly.com/pre-ico-la-gi-1654245602/">Kiến thức chung về ICO: Pre-ICO, ICO Crowdsale, Airdop và Bounty là gì?</a></h5>
                                            <!-- // title_small_post -->
                                        </div>
                                        <!-- // small-post-content -->
                                    </li>
                                    <!-- // small_post -->
                                </ul>  
                            </div>

                                                        <!-- small-list-post -->
                            <div class="small-list-post col-lg-6 col-md-6 col-sm-6 col-xs-12  mr-bot20">
                                <ul>
                                    <li class="small-post clearfix">
                                        <!-- small_post -->
                                                                                <div class="img-small-post">
                                            <a href="https://nhacly.com/phot-duoi-truc-co-la-gi-1654245430/">
                                                                                                    <img src="https://nhacly.com/wp-content/uploads/2022/06/phot-dau-truc-co-04-150x150.jpg" alt="DẤU HIỆU CẢNH BÁO CẦN KIỂM TRA, THAY THẾ PHỚT ĐẦU TRỤC CƠ">
                                                                                            </a>
                                            <!-- img-small-post -->
                                        </div>
                                        <!-- // img-small-post -->
                                                                                <div class="small-post-content">
                                            <div class="mg-blog-category"> 
                                                <a class="newsup-categories category-color-1" href="https://nhacly.com/category/thuat-ngu-doi-thuong/" alt="View all posts in Thuật ngữ đời thường"> 
                                 Thuật ngữ đời thường
                             </a>                                            </div>
                                            <!-- small-post-content -->
                                            <h5 class="title"><a href="https://nhacly.com/phot-duoi-truc-co-la-gi-1654245430/">DẤU HIỆU CẢNH BÁO CẦN KIỂM TRA, THAY THẾ PHỚT ĐẦU TRỤC CƠ</a></h5>
                                            <!-- // title_small_post -->
                                        </div>
                                        <!-- // small-post-content -->
                                    </li>
                                    <!-- // small_post -->
                                </ul>  
                            </div>

                                                        <!-- small-list-post -->
                            <div class="small-list-post col-lg-6 col-md-6 col-sm-6 col-xs-12  mr-bot20">
                                <ul>
                                    <li class="small-post clearfix">
                                        <!-- small_post -->
                                                                                <div class="img-small-post">
                                            <a href="https://nhacly.com/phu-thinh-khong-phu-suy-la-gi-1654245344/">
                                                                                                    <img src="https://nhacly.com/wp-content/uploads/2022/06/234642000_559099278547861_2132013725691648448_n-150x150.jpg" alt="“Phù thịnh không phù suy” trong đầu tư BĐS">
                                                                                            </a>
                                            <!-- img-small-post -->
                                        </div>
                                        <!-- // img-small-post -->
                                                                                <div class="small-post-content">
                                            <div class="mg-blog-category"> 
                                                <a class="newsup-categories category-color-1" href="https://nhacly.com/category/thuat-ngu-doi-thuong/" alt="View all posts in Thuật ngữ đời thường"> 
                                 Thuật ngữ đời thường
                             </a>                                            </div>
                                            <!-- small-post-content -->
                                            <h5 class="title"><a href="https://nhacly.com/phu-thinh-khong-phu-suy-la-gi-1654245344/">“Phù thịnh không phù suy” trong đầu tư BĐS</a></h5>
                                            <!-- // title_small_post -->
                                        </div>
                                        <!-- // small-post-content -->
                                    </li>
                                    <!-- // small_post -->
                                </ul>  
                            </div>

                                                        <!-- small-list-post -->
                            <div class="small-list-post col-lg-6 col-md-6 col-sm-6 col-xs-12  mr-bot20">
                                <ul>
                                    <li class="small-post clearfix">
                                        <!-- small_post -->
                                                                                <div class="img-small-post">
                                            <a href="https://nhacly.com/phap-ly-doanh-nghiep-la-gi-1654245256/">
                                                                                                    <img src="https://nhacly.com/wp-content/uploads/2022/06/tinh-trang-phap-ly-cua-doanh-nghiep-la-gi-150x150.png" alt="Tình trạng pháp lý của doanh nghiệp là gì? – FBLAW">
                                                                                            </a>
                                            <!-- img-small-post -->
                                        </div>
                                        <!-- // img-small-post -->
                                                                                <div class="small-post-content">
                                            <div class="mg-blog-category"> 
                                                <a class="newsup-categories category-color-1" href="https://nhacly.com/category/thuat-ngu-doi-thuong/" alt="View all posts in Thuật ngữ đời thường"> 
                                 Thuật ngữ đời thường
                             </a>                                            </div>
                                            <!-- small-post-content -->
                                            <h5 class="title"><a href="https://nhacly.com/phap-ly-doanh-nghiep-la-gi-1654245256/">Tình trạng pháp lý của doanh nghiệp là gì? – FBLAW</a></h5>
                                            <!-- // title_small_post -->
                                        </div>
                                        <!-- // small-post-content -->
                                    </li>
                                    <!-- // small_post -->
                                </ul>  
                            </div>

                                                        <!-- small-list-post -->
                            <div class="small-list-post col-lg-6 col-md-6 col-sm-6 col-xs-12  mr-bot20">
                                <ul>
                                    <li class="small-post clearfix">
                                        <!-- small_post -->
                                                                                <div class="img-small-post">
                                            <a href="https://nhacly.com/palatinose-la-gi-1654245083/">
                                                                                                    <img src="https://nhacly.com/wp-content/uploads/2022/06/duong-isomaltulose-hay-palatinose-la-gi-2_800x450-150x150.jpg" alt="Đường Isomaltulose hay Palatinose là gì?">
                                                                                            </a>
                                            <!-- img-small-post -->
                                        </div>
                                        <!-- // img-small-post -->
                                                                                <div class="small-post-content">
                                            <div class="mg-blog-category"> 
                                                <a class="newsup-categories category-color-1" href="https://nhacly.com/category/thuat-ngu-doi-thuong/" alt="View all posts in Thuật ngữ đời thường"> 
                                 Thuật ngữ đời thường
                             </a>                                            </div>
                                            <!-- small-post-content -->
                                            <h5 class="title"><a href="https://nhacly.com/palatinose-la-gi-1654245083/">Đường Isomaltulose hay Palatinose là gì?</a></h5>
                                            <!-- // title_small_post -->
                                        </div>
                                        <!-- // small-post-content -->
                                    </li>
                                    <!-- // small_post -->
                                </ul>  
                            </div>

                                                        <!-- small-list-post -->
                            <div class="small-list-post col-lg-6 col-md-6 col-sm-6 col-xs-12  mr-bot20">
                                <ul>
                                    <li class="small-post clearfix">
                                        <!-- small_post -->
                                                                                <div class="img-small-post">
                                            <a href="https://nhacly.com/nuoc-thai-cong-nghiep-la-gi-1654244994/">
                                                                                                    <img src="https://nhacly.com/wp-content/uploads/2022/02/cropped-logo-1-150x150.png" alt="Khái Niệm Nước Thải Công Nghiệp Là Gì?">
                                                                                            </a>
                                            <!-- img-small-post -->
                                        </div>
                                        <!-- // img-small-post -->
                                                                                <div class="small-post-content">
                                            <div class="mg-blog-category"> 
                                                <a class="newsup-categories category-color-1" href="https://nhacly.com/category/thuat-ngu-doi-thuong/" alt="View all posts in Thuật ngữ đời thường"> 
                                 Thuật ngữ đời thường
                             </a>                                            </div>
                                            <!-- small-post-content -->
                                            <h5 class="title"><a href="https://nhacly.com/nuoc-thai-cong-nghiep-la-gi-1654244994/">Khái Niệm Nước Thải Công Nghiệp Là Gì?</a></h5>
                                            <!-- // title_small_post -->
                                        </div>
                                        <!-- // small-post-content -->
                                    </li>
                                    <!-- // small_post -->
                                </ul>  
                            </div>

                                                        <!-- small-list-post -->
                            <div class="small-list-post col-lg-6 col-md-6 col-sm-6 col-xs-12  mr-bot20">
                                <ul>
                                    <li class="small-post clearfix">
                                        <!-- small_post -->
                                                                                <div class="img-small-post">
                                            <a href="https://nhacly.com/nhua-sinh-hoc-la-gi-1654244909/">
                                                                                                    <img src="https://nhacly.com/wp-content/uploads/2022/06/nha-may-san-xuat-nhua-sinh-hoc-150x150.jpg" alt="Nhựa sinh học trên thế giới – 5 điều có thể BẠN CHƯA BIẾT">
                                                                                            </a>
                                            <!-- img-small-post -->
                                        </div>
                                        <!-- // img-small-post -->
                                                                                <div class="small-post-content">
                                            <div class="mg-blog-category"> 
                                                <a class="newsup-categories category-color-1" href="https://nhacly.com/category/thuat-ngu-doi-thuong/" alt="View all posts in Thuật ngữ đời thường"> 
                                 Thuật ngữ đời thường
                             </a>                                            </div>
                                            <!-- small-post-content -->
                                            <h5 class="title"><a href="https://nhacly.com/nhua-sinh-hoc-la-gi-1654244909/">Nhựa sinh học trên thế giới – 5 điều có thể BẠN CHƯA BIẾT</a></h5>
                                            <!-- // title_small_post -->
                                        </div>
                                        <!-- // small-post-content -->
                                    </li>
                                    <!-- // small_post -->
                                </ul>  
                            </div>

                                                        <!-- small-list-post -->
                            <div class="small-list-post col-lg-6 col-md-6 col-sm-6 col-xs-12  mr-bot20">
                                <ul>
                                    <li class="small-post clearfix">
                                        <!-- small_post -->
                                                                                <div class="img-small-post">
                                            <a href="https://nhacly.com/nhua-pom-la-gi-1654244822/">
                                                                                                    <img src="https://nhacly.com/wp-content/uploads/2022/06/vong-bi-bang-nhua-pom-150x150.jpg" alt="Nhựa POM là gì? có mấy loại nhựa POM phổ biến?">
                                                                                            </a>
                                            <!-- img-small-post -->
                                        </div>
                                        <!-- // img-small-post -->
                                                                                <div class="small-post-content">
                                            <div class="mg-blog-category"> 
                                                <a class="newsup-categories category-color-1" href="https://nhacly.com/category/thuat-ngu-doi-thuong/" alt="View all posts in Thuật ngữ đời thường"> 
                                 Thuật ngữ đời thường
                             </a>                                            </div>
                                            <!-- small-post-content -->
                                            <h5 class="title"><a href="https://nhacly.com/nhua-pom-la-gi-1654244822/">Nhựa POM là gì? có mấy loại nhựa POM phổ biến?</a></h5>
                                            <!-- // title_small_post -->
                                        </div>
                                        <!-- // small-post-content -->
                                    </li>
                                    <!-- // small_post -->
                                </ul>  
                            </div>

                                                        <!-- small-list-post -->
                            <div class="small-list-post col-lg-6 col-md-6 col-sm-6 col-xs-12  mr-bot20">
                                <ul>
                                    <li class="small-post clearfix">
                                        <!-- small_post -->
                                                                                <div class="img-small-post">
                                            <a href="https://nhacly.com/tiet-hoc-tieng-anh-la-gi-1654064504/">
                                                                                                    <img src="https://nhacly.com/wp-content/uploads/2022/02/cropped-logo-1-150x150.png" alt="Tiết Học Tiếng Anh Là Gì – Tiết Học Tiếng Nhật Là Gì – Cẩm nang Hải Phòng">
                                                                                            </a>
                                            <!-- img-small-post -->
                                        </div>
                                        <!-- // img-small-post -->
                                                                                <div class="small-post-content">
                                            <div class="mg-blog-category"> 
                                                <a class="newsup-categories category-color-1" href="https://nhacly.com/category/thuat-ngu-doi-thuong/" alt="View all posts in Thuật ngữ đời thường"> 
                                 Thuật ngữ đời thường
                             </a>                                            </div>
                                            <!-- small-post-content -->
                                            <h5 class="title"><a href="https://nhacly.com/tiet-hoc-tieng-anh-la-gi-1654064504/">Tiết Học Tiếng Anh Là Gì – Tiết Học Tiếng Nhật Là Gì – Cẩm nang Hải Phòng</a></h5>
                                            <!-- // title_small_post -->
                                        </div>
                                        <!-- // small-post-content -->
                                    </li>
                                    <!-- // small_post -->
                                </ul>  
                            </div>

                                                        <!-- small-list-post -->
                            <div class="small-list-post col-lg-6 col-md-6 col-sm-6 col-xs-12  mr-bot20">
                                <ul>
                                    <li class="small-post clearfix">
                                        <!-- small_post -->
                                                                                <div class="img-small-post">
                                            <a href="https://nhacly.com/tiep-tuyen-la-gi-1654051628/">
                                                                                                    <img src="https://nhacly.com/wp-content/uploads/2022/06/tiep-tuyen-cua-duong-tron-300x207-1-150x150.jpg" alt="Tiếp tuyến là gì? Lý thuyết, tính chất, dấu hiệu nhận biết tiếp tuyến của đường tròn">
                                                                                            </a>
                                            <!-- img-small-post -->
                                        </div>
                                        <!-- // img-small-post -->
                                                                                <div class="small-post-content">
                                            <div class="mg-blog-category"> 
                                                <a class="newsup-categories category-color-1" href="https://nhacly.com/category/thuat-ngu-doi-thuong/" alt="View all posts in Thuật ngữ đời thường"> 
                                 Thuật ngữ đời thường
                             </a>                                            </div>
                                            <!-- small-post-content -->
                                            <h5 class="title"><a href="https://nhacly.com/tiep-tuyen-la-gi-1654051628/">Tiếp tuyến là gì? Lý thuyết, tính chất, dấu hiệu nhận biết tiếp tuyến của đường tròn</a></h5>
                                            <!-- // title_small_post -->
                                        </div>
                                        <!-- // small-post-content -->
                                    </li>
                                    <!-- // small_post -->
                                </ul>  
                            </div>

                                                        <!-- small-list-post -->
                            <div class="small-list-post col-lg-6 col-md-6 col-sm-6 col-xs-12  mr-bot20">
                                <ul>
                                    <li class="small-post clearfix">
                                        <!-- small_post -->
                                                                                <div class="img-small-post">
                                            <a href="https://nhacly.com/tiep-thi-sua-csgt-la-gi-1654051439/">
                                                                                                    <img src="https://nhacly.com/wp-content/uploads/2022/06/tiep-thi-sua-la-gi-150x150.jpg" alt="Tiếp thị sữa là gì ? Giải nghĩa cụm từ “tiếp thị sữa”">
                                                                                            </a>
                                            <!-- img-small-post -->
                                        </div>
                                        <!-- // img-small-post -->
                                                                                <div class="small-post-content">
                                            <div class="mg-blog-category"> 
                                                <a class="newsup-categories category-color-1" href="https://nhacly.com/category/thuat-ngu-doi-thuong/" alt="View all posts in Thuật ngữ đời thường"> 
                                 Thuật ngữ đời thường
                             </a>                                            </div>
                                            <!-- small-post-content -->
                                            <h5 class="title"><a href="https://nhacly.com/tiep-thi-sua-csgt-la-gi-1654051439/">Tiếp thị sữa là gì ? Giải nghĩa cụm từ “tiếp thị sữa”</a></h5>
                                            <!-- // title_small_post -->
                                        </div>
                                        <!-- // small-post-content -->
                                    </li>
                                    <!-- // small_post -->
                                </ul>  
                            </div>

                                                        <!-- small-list-post -->
                            <div class="small-list-post col-lg-6 col-md-6 col-sm-6 col-xs-12  mr-bot20">
                                <ul>
                                    <li class="small-post clearfix">
                                        <!-- small_post -->
                                                                                <div class="img-small-post">
                                            <a href="https://nhacly.com/tiep-khach-tieng-anh-la-gi-1654051371/">
                                                                                                    <img src="https://nhacly.com/wp-content/uploads/2022/02/cropped-logo-1-150x150.png" alt="Tiếp khách tiếng anh là gì? Tiếp khách thời công nghệ số">
                                                                                            </a>
                                            <!-- img-small-post -->
                                        </div>
                                        <!-- // img-small-post -->
                                                                                <div class="small-post-content">
                                            <div class="mg-blog-category"> 
                                                <a class="newsup-categories category-color-1" href="https://nhacly.com/category/thuat-ngu-doi-thuong/" alt="View all posts in Thuật ngữ đời thường"> 
                                 Thuật ngữ đời thường
                             </a>                                            </div>
                                            <!-- small-post-content -->
                                            <h5 class="title"><a href="https://nhacly.com/tiep-khach-tieng-anh-la-gi-1654051371/">Tiếp khách tiếng anh là gì? Tiếp khách thời công nghệ số</a></h5>
                                            <!-- // title_small_post -->
                                        </div>
                                        <!-- // small-post-content -->
                                    </li>
                                    <!-- // small_post -->
                                </ul>  
                            </div>

                                                        <!-- small-list-post -->
                            <div class="small-list-post col-lg-6 col-md-6 col-sm-6 col-xs-12  mr-bot20">
                                <ul>
                                    <li class="small-post clearfix">
                                        <!-- small_post -->
                                                                                <div class="img-small-post">
                                            <a href="https://nhacly.com/tiep-bien-van-hoa-la-gi-1654051276/">
                                                                                                    <img src="https://nhacly.com/wp-content/uploads/2022/02/cropped-logo-1-150x150.png" alt="tiếp biến văn hóa VN trong bối cảnh hội nhập">
                                                                                            </a>
                                            <!-- img-small-post -->
                                        </div>
                                        <!-- // img-small-post -->
                                                                                <div class="small-post-content">
                                            <div class="mg-blog-category"> 
                                                <a class="newsup-categories category-color-1" href="https://nhacly.com/category/thuat-ngu-doi-thuong/" alt="View all posts in Thuật ngữ đời thường"> 
                                 Thuật ngữ đời thường
                             </a>                                            </div>
                                            <!-- small-post-content -->
                                            <h5 class="title"><a href="https://nhacly.com/tiep-bien-van-hoa-la-gi-1654051276/">tiếp biến văn hóa VN trong bối cảnh hội nhập</a></h5>
                                            <!-- // title_small_post -->
                                        </div>
                                        <!-- // small-post-content -->
                                    </li>
                                    <!-- // small_post -->
                                </ul>  
                            </div>

                                                        <!-- small-list-post -->
                            <div class="small-list-post col-lg-6 col-md-6 col-sm-6 col-xs-12  mr-bot20">
                                <ul>
                                    <li class="small-post clearfix">
                                        <!-- small_post -->
                                                                                <div class="img-small-post">
                                            <a href="https://nhacly.com/tieng-pho-thong-la-gi-1654050930/">
                                                                                                    <img src="https://nhacly.com/wp-content/uploads/2022/02/cropped-logo-1-150x150.png" alt="Tiếng phổ thông là gì? Sử dụng linh hoạt tiếng phổ thông">
                                                                                            </a>
                                            <!-- img-small-post -->
                                        </div>
                                        <!-- // img-small-post -->
                                                                                <div class="small-post-content">
                                            <div class="mg-blog-category"> 
                                                <a class="newsup-categories category-color-1" href="https://nhacly.com/category/thuat-ngu-doi-thuong/" alt="View all posts in Thuật ngữ đời thường"> 
                                 Thuật ngữ đời thường
                             </a>                                            </div>
                                            <!-- small-post-content -->
                                            <h5 class="title"><a href="https://nhacly.com/tieng-pho-thong-la-gi-1654050930/">Tiếng phổ thông là gì? Sử dụng linh hoạt tiếng phổ thông</a></h5>
                                            <!-- // title_small_post -->
                                        </div>
                                        <!-- // small-post-content -->
                                    </li>
                                    <!-- // small_post -->
                                </ul>  
                            </div>

                                                        <!-- small-list-post -->
                            <div class="small-list-post col-lg-6 col-md-6 col-sm-6 col-xs-12  mr-bot20">
                                <ul>
                                    <li class="small-post clearfix">
                                        <!-- small_post -->
                                                                                <div class="img-small-post">
                                            <a href="https://nhacly.com/tieng-phan-la-gi-1654050832/">
                                                                                                    <img src="https://nhacly.com/wp-content/uploads/2022/06/tieng-phan-01-content-150x150.jpg" alt="Tiếng Phạn Trong Phật Giáo">
                                                                                            </a>
                                            <!-- img-small-post -->
                                        </div>
                                        <!-- // img-small-post -->
                                                                                <div class="small-post-content">
                                            <div class="mg-blog-category"> 
                                                <a class="newsup-categories category-color-1" href="https://nhacly.com/category/thuat-ngu-doi-thuong/" alt="View all posts in Thuật ngữ đời thường"> 
                                 Thuật ngữ đời thường
                             </a>                                            </div>
                                            <!-- small-post-content -->
                                            <h5 class="title"><a href="https://nhacly.com/tieng-phan-la-gi-1654050832/">Tiếng Phạn Trong Phật Giáo</a></h5>
                                            <!-- // title_small_post -->
                                        </div>
                                        <!-- // small-post-content -->
                                    </li>
                                    <!-- // small_post -->
                                </ul>  
                            </div>

                                                        <!-- small-list-post -->
                            <div class="small-list-post col-lg-6 col-md-6 col-sm-6 col-xs-12  mr-bot20">
                                <ul>
                                    <li class="small-post clearfix">
                                        <!-- small_post -->
                                                                                <div class="img-small-post">
                                            <a href="https://nhacly.com/tieng-anh-tang-cuong-la-gi-1654050660/">
                                                                                                    <img src="https://nhacly.com/wp-content/uploads/2022/06/hinh-3-lop-tang-cuong-tieng-anh-tai-Inspire-schools-1-150x150.jpg" alt="Học tăng cường tiếng Anh là gì và nó mang lại những lợi ích nào?">
                                                                                            </a>
                                            <!-- img-small-post -->
                                        </div>
                                        <!-- // img-small-post -->
                                                                                <div class="small-post-content">
                                            <div class="mg-blog-category"> 
                                                <a class="newsup-categories category-color-1" href="https://nhacly.com/category/thuat-ngu-doi-thuong/" alt="View all posts in Thuật ngữ đời thường"> 
                                 Thuật ngữ đời thường
                             </a>                                            </div>
                                            <!-- small-post-content -->
                                            <h5 class="title"><a href="https://nhacly.com/tieng-anh-tang-cuong-la-gi-1654050660/">Học tăng cường tiếng Anh là gì và nó mang lại những lợi ích nào?</a></h5>
                                            <!-- // title_small_post -->
                                        </div>
                                        <!-- // small-post-content -->
                                    </li>
                                    <!-- // small_post -->
                                </ul>  
                            </div>

                                                        <!-- small-list-post -->
                            <div class="small-list-post col-lg-6 col-md-6 col-sm-6 col-xs-12  mr-bot20">
                                <ul>
                                    <li class="small-post clearfix">
                                        <!-- small_post -->
                                                                                <div class="img-small-post">
                                            <a href="https://nhacly.com/tieng-anh-he-7-nam-la-gi-1654050573/">
                                                                                                    <img src="https://nhacly.com/wp-content/uploads/2022/06/Tieng-Anh-He-10-Nam-150x150.jpg" alt="Giáo viên loay hoay vì tinh giản nội dung theo sách khác thực tế dạy học">
                                                                                            </a>
                                            <!-- img-small-post -->
                                        </div>
                                        <!-- // img-small-post -->
                                                                                <div class="small-post-content">
                                            <div class="mg-blog-category"> 
                                                <a class="newsup-categories category-color-1" href="https://nhacly.com/category/thuat-ngu-doi-thuong/" alt="View all posts in Thuật ngữ đời thường"> 
                                 Thuật ngữ đời thường
                             </a>                                            </div>
                                            <!-- small-post-content -->
                                            <h5 class="title"><a href="https://nhacly.com/tieng-anh-he-7-nam-la-gi-1654050573/">Giáo viên loay hoay vì tinh giản nội dung theo sách khác thực tế dạy học</a></h5>
                                            <!-- // title_small_post -->
                                        </div>
                                        <!-- // small-post-content -->
                                    </li>
                                    <!-- // small_post -->
                                </ul>  
                            </div>

                                                        <!-- small-list-post -->
                            <div class="small-list-post col-lg-6 col-md-6 col-sm-6 col-xs-12  mr-bot20">
                                <ul>
                                    <li class="small-post clearfix">
                                        <!-- small_post -->
                                                                                <div class="img-small-post">
                                            <a href="https://nhacly.com/tien-trinh-la-gi-1654050400/">
                                                                                                    <img src="https://nhacly.com/wp-content/uploads/2022/06/07-12-2018-22-33-04-image-150x150.png" alt="Chi tiết bài học Tiến trình là gì">
                                                                                            </a>
                                            <!-- img-small-post -->
                                        </div>
                                        <!-- // img-small-post -->
                                                                                <div class="small-post-content">
                                            <div class="mg-blog-category"> 
                                                <a class="newsup-categories category-color-1" href="https://nhacly.com/category/thuat-ngu-doi-thuong/" alt="View all posts in Thuật ngữ đời thường"> 
                                 Thuật ngữ đời thường
                             </a>                                            </div>
                                            <!-- small-post-content -->
                                            <h5 class="title"><a href="https://nhacly.com/tien-trinh-la-gi-1654050400/">Chi tiết bài học Tiến trình là gì</a></h5>
                                            <!-- // title_small_post -->
                                        </div>
                                        <!-- // small-post-content -->
                                    </li>
                                    <!-- // small_post -->
                                </ul>  
                            </div>

                                                        <!-- small-list-post -->
                            <div class="small-list-post col-lg-6 col-md-6 col-sm-6 col-xs-12  mr-bot20">
                                <ul>
                                    <li class="small-post clearfix">
                                        <!-- small_post -->
                                                                                <div class="img-small-post">
                                            <a href="https://nhacly.com/tien-si-tieng-anh-la-gi-1654050316/">
                                                                                                    <img src="https://nhacly.com/wp-content/uploads/2022/06/tien-si-1-150x150.jpg" alt="Tiến sĩ là gì? Tiến sĩ tiếng Anh là gì? Đừng bỏ lỡ bài viết!">
                                                                                            </a>
                                            <!-- img-small-post -->
                                        </div>
                                        <!-- // img-small-post -->
                                                                                <div class="small-post-content">
                                            <div class="mg-blog-category"> 
                                                <a class="newsup-categories category-color-1" href="https://nhacly.com/category/thuat-ngu-doi-thuong/" alt="View all posts in Thuật ngữ đời thường"> 
                                 Thuật ngữ đời thường
                             </a>                                            </div>
                                            <!-- small-post-content -->
                                            <h5 class="title"><a href="https://nhacly.com/tien-si-tieng-anh-la-gi-1654050316/">Tiến sĩ là gì? Tiến sĩ tiếng Anh là gì? Đừng bỏ lỡ bài viết!</a></h5>
                                            <!-- // title_small_post -->
                                        </div>
                                        <!-- // small-post-content -->
                                    </li>
                                    <!-- // small_post -->
                                </ul>  
                            </div>

                                                        <!-- small-list-post -->
                            <div class="small-list-post col-lg-6 col-md-6 col-sm-6 col-xs-12  mr-bot20">
                                <ul>
                                    <li class="small-post clearfix">
                                        <!-- small_post -->
                                                                                <div class="img-small-post">
                                            <a href="https://nhacly.com/tieu-xuong-la-gi-1654049964/">
                                                                                                    <img src="https://nhacly.com/wp-content/uploads/2022/02/cropped-logo-1-150x150.png" alt="Tiêu xương răng: Những điều cần biết">
                                                                                            </a>
                                            <!-- img-small-post -->
                                        </div>
                                        <!-- // img-small-post -->
                                                                                <div class="small-post-content">
                                            <div class="mg-blog-category"> 
                                                <a class="newsup-categories category-color-1" href="https://nhacly.com/category/thuat-ngu-doi-thuong/" alt="View all posts in Thuật ngữ đời thường"> 
                                 Thuật ngữ đời thường
                             </a>                                            </div>
                                            <!-- small-post-content -->
                                            <h5 class="title"><a href="https://nhacly.com/tieu-xuong-la-gi-1654049964/">Tiêu xương răng: Những điều cần biết</a></h5>
                                            <!-- // title_small_post -->
                                        </div>
                                        <!-- // small-post-content -->
                                    </li>
                                    <!-- // small_post -->
                                </ul>  
                            </div>

                                                        <!-- small-list-post -->
                            <div class="small-list-post col-lg-6 col-md-6 col-sm-6 col-xs-12  mr-bot20">
                                <ul>
                                    <li class="small-post clearfix">
                                        <!-- small_post -->
                                                                                <div class="img-small-post">
                                            <a href="https://nhacly.com/tieu-sai-la-gi-1654049808/">
                                                                                                    <img src="https://nhacly.com/wp-content/uploads/2022/02/cropped-logo-1-150x150.png" alt="Nghĩa Của Từ Tiêu Sái Là Gì ? Nghĩa Của Từ Tiêu Sái Hán Nôm Là Gì">
                                                                                            </a>
                                            <!-- img-small-post -->
                                        </div>
                                        <!-- // img-small-post -->
                                                                                <div class="small-post-content">
                                            <div class="mg-blog-category"> 
                                                <a class="newsup-categories category-color-1" href="https://nhacly.com/category/thuat-ngu-doi-thuong/" alt="View all posts in Thuật ngữ đời thường"> 
                                 Thuật ngữ đời thường
                             </a>                                            </div>
                                            <!-- small-post-content -->
                                            <h5 class="title"><a href="https://nhacly.com/tieu-sai-la-gi-1654049808/">Nghĩa Của Từ Tiêu Sái Là Gì ? Nghĩa Của Từ Tiêu Sái Hán Nôm Là Gì</a></h5>
                                            <!-- // title_small_post -->
                                        </div>
                                        <!-- // small-post-content -->
                                    </li>
                                    <!-- // small_post -->
                                </ul>  
                            </div>

                                                        <!-- small-list-post -->
                            <div class="small-list-post col-lg-6 col-md-6 col-sm-6 col-xs-12  mr-bot20">
                                <ul>
                                    <li class="small-post clearfix">
                                        <!-- small_post -->
                                                                                <div class="img-small-post">
                                            <a href="https://nhacly.com/tieu-po-la-gi-1654049709/">
                                                                                                    <img src="https://nhacly.com/wp-content/uploads/2022/02/cropped-logo-1-150x150.png" alt="Tiêu pô là gì">
                                                                                            </a>
                                            <!-- img-small-post -->
                                        </div>
                                        <!-- // img-small-post -->
                                                                                <div class="small-post-content">
                                            <div class="mg-blog-category"> 
                                                <a class="newsup-categories category-color-1" href="https://nhacly.com/category/thuat-ngu-doi-thuong/" alt="View all posts in Thuật ngữ đời thường"> 
                                 Thuật ngữ đời thường
                             </a>                                            </div>
                                            <!-- small-post-content -->
                                            <h5 class="title"><a href="https://nhacly.com/tieu-po-la-gi-1654049709/">Tiêu pô là gì</a></h5>
                                            <!-- // title_small_post -->
                                        </div>
                                        <!-- // small-post-content -->
                                    </li>
                                    <!-- // small_post -->
                                </ul>  
                            </div>

                                                        <!-- small-list-post -->
                            <div class="small-list-post col-lg-6 col-md-6 col-sm-6 col-xs-12  mr-bot20">
                                <ul>
                                    <li class="small-post clearfix">
                                        <!-- small_post -->
                                                                                <div class="img-small-post">
                                            <a href="https://nhacly.com/tieu-khien-la-gi-1654049625/">
                                                                                                    <img src="https://nhacly.com/wp-content/uploads/2022/02/cropped-logo-1-150x150.png" alt="ĐịNh Nghĩa trò tiêu khiển TổNg Giá Trị CủA Khái NiệM Này. Đây Là Gì trò tiêu khiển">
                                                                                            </a>
                                            <!-- img-small-post -->
                                        </div>
                                        <!-- // img-small-post -->
                                                                                <div class="small-post-content">
                                            <div class="mg-blog-category"> 
                                                <a class="newsup-categories category-color-1" href="https://nhacly.com/category/thuat-ngu-doi-thuong/" alt="View all posts in Thuật ngữ đời thường"> 
                                 Thuật ngữ đời thường
                             </a>                                            </div>
                                            <!-- small-post-content -->
                                            <h5 class="title"><a href="https://nhacly.com/tieu-khien-la-gi-1654049625/">ĐịNh Nghĩa trò tiêu khiển TổNg Giá Trị CủA Khái NiệM Này. Đây Là Gì trò tiêu khiển</a></h5>
                                            <!-- // title_small_post -->
                                        </div>
                                        <!-- // small-post-content -->
                                    </li>
                                    <!-- // small_post -->
                                </ul>  
                            </div>

                                                        <!-- small-list-post -->
                            <div class="small-list-post col-lg-6 col-md-6 col-sm-6 col-xs-12  mr-bot20">
                                <ul>
                                    <li class="small-post clearfix">
                                        <!-- small_post -->
                                                                                <div class="img-small-post">
                                            <a href="https://nhacly.com/tieu-cu-may-anh-la-gi-1654049533/">
                                                                                                    <img src="https://nhacly.com/wp-content/uploads/2022/06/2709_he-so-crop-la-gi-150x150.jpg" alt="Tiêu cự máy ảnh là gì? Bạn có thực sự hiểu rõ về thuật ngữ này?">
                                                                                            </a>
                                            <!-- img-small-post -->
                                        </div>
                                        <!-- // img-small-post -->
                                                                                <div class="small-post-content">
                                            <div class="mg-blog-category"> 
                                                <a class="newsup-categories category-color-1" href="https://nhacly.com/category/thuat-ngu-doi-thuong/" alt="View all posts in Thuật ngữ đời thường"> 
                                 Thuật ngữ đời thường
                             </a>                                            </div>
                                            <!-- small-post-content -->
                                            <h5 class="title"><a href="https://nhacly.com/tieu-cu-may-anh-la-gi-1654049533/">Tiêu cự máy ảnh là gì? Bạn có thực sự hiểu rõ về thuật ngữ này?</a></h5>
                                            <!-- // title_small_post -->
                                        </div>
                                        <!-- // small-post-content -->
                                    </li>
                                    <!-- // small_post -->
                                </ul>  
                            </div>

                                                        <!-- small-list-post -->
                            <div class="small-list-post col-lg-6 col-md-6 col-sm-6 col-xs-12  mr-bot20">
                                <ul>
                                    <li class="small-post clearfix">
                                        <!-- small_post -->
                                                                                <div class="img-small-post">
                                            <a href="https://nhacly.com/tieu-chi-danh-gia-la-gi-1654049450/">
                                                                                                    <img src="https://nhacly.com/wp-content/uploads/2022/02/cropped-logo-1-150x150.png" alt="Tiêu chí là gì? Thước đo sự chuẩn mực để đánh giá mọi vấn đề">
                                                                                            </a>
                                            <!-- img-small-post -->
                                        </div>
                                        <!-- // img-small-post -->
                                                                                <div class="small-post-content">
                                            <div class="mg-blog-category"> 
                                                <a class="newsup-categories category-color-1" href="https://nhacly.com/category/thuat-ngu-doi-thuong/" alt="View all posts in Thuật ngữ đời thường"> 
                                 Thuật ngữ đời thường
                             </a>                                            </div>
                                            <!-- small-post-content -->
                                            <h5 class="title"><a href="https://nhacly.com/tieu-chi-danh-gia-la-gi-1654049450/">Tiêu chí là gì? Thước đo sự chuẩn mực để đánh giá mọi vấn đề</a></h5>
                                            <!-- // title_small_post -->
                                        </div>
                                        <!-- // small-post-content -->
                                    </li>
                                    <!-- // small_post -->
                                </ul>  
                            </div>

                                                        <!-- small-list-post -->
                            <div class="small-list-post col-lg-6 col-md-6 col-sm-6 col-xs-12  mr-bot20">
                                <ul>
                                    <li class="small-post clearfix">
                                        <!-- small_post -->
                                                                                <div class="img-small-post">
                                            <a href="https://nhacly.com/tien-phong-la-gi-1654048930/">
                                                                                                    <img src="https://nhacly.com/wp-content/uploads/2022/06/te-150x150.jpg" alt="Chữ và nghĩa: ‘Tiền phong’ và ‘tiên phong’">
                                                                                            </a>
                                            <!-- img-small-post -->
                                        </div>
                                        <!-- // img-small-post -->
                                                                                <div class="small-post-content">
                                            <div class="mg-blog-category"> 
                                                <a class="newsup-categories category-color-1" href="https://nhacly.com/category/thuat-ngu-doi-thuong/" alt="View all posts in Thuật ngữ đời thường"> 
                                 Thuật ngữ đời thường
                             </a>                                            </div>
                                            <!-- small-post-content -->
                                            <h5 class="title"><a href="https://nhacly.com/tien-phong-la-gi-1654048930/">Chữ và nghĩa: ‘Tiền phong’ và ‘tiên phong’</a></h5>
                                            <!-- // title_small_post -->
                                        </div>
                                        <!-- // small-post-content -->
                                    </li>
                                    <!-- // small_post -->
                                </ul>  
                            </div>

                                                        <!-- small-list-post -->
                            <div class="small-list-post col-lg-6 col-md-6 col-sm-6 col-xs-12  mr-bot20">
                                <ul>
                                    <li class="small-post clearfix">
                                        <!-- small_post -->
                                                                                <div class="img-small-post">
                                            <a href="https://nhacly.com/tiem-ranh-cuoi-la-gi-1654048842/">
                                                                                                    <img src="https://nhacly.com/wp-content/uploads/2022/06/DqrXzlJc-tiem-filler-ranh-cuoi-9-150x150.jpg" alt="Tiêm Filler rãnh cười – Xóa đi dấu hiệu già nua, trẻ hóa gương mặt">
                                                                                            </a>
                                            <!-- img-small-post -->
                                        </div>
                                        <!-- // img-small-post -->
                                                                                <div class="small-post-content">
                                            <div class="mg-blog-category"> 
                                                <a class="newsup-categories category-color-1" href="https://nhacly.com/category/thuat-ngu-doi-thuong/" alt="View all posts in Thuật ngữ đời thường"> 
                                 Thuật ngữ đời thường
                             </a>                                            </div>
                                            <!-- small-post-content -->
                                            <h5 class="title"><a href="https://nhacly.com/tiem-ranh-cuoi-la-gi-1654048842/">Tiêm Filler rãnh cười – Xóa đi dấu hiệu già nua, trẻ hóa gương mặt</a></h5>
                                            <!-- // title_small_post -->
                                        </div>
                                        <!-- // small-post-content -->
                                    </li>
                                    <!-- // small_post -->
                                </ul>  
                            </div>

                                                        <!-- small-list-post -->
                            <div class="small-list-post col-lg-6 col-md-6 col-sm-6 col-xs-12  mr-bot20">
                                <ul>
                                    <li class="small-post clearfix">
                                        <!-- small_post -->
                                                                                <div class="img-small-post">
                                            <a href="https://nhacly.com/tiem-phong-mui-mr1-la-gi-1654048761/">
                                                                                                    <img src="https://nhacly.com/wp-content/uploads/2022/02/cropped-logo-1-150x150.png" alt="Tiêm phòng mũi dpt4 1 mr1 là mũi gì? – http://139.180.218.5">
                                                                                            </a>
                                            <!-- img-small-post -->
                                        </div>
                                        <!-- // img-small-post -->
                                                                                <div class="small-post-content">
                                            <div class="mg-blog-category"> 
                                                <a class="newsup-categories category-color-1" href="https://nhacly.com/category/thuat-ngu-doi-thuong/" alt="View all posts in Thuật ngữ đời thường"> 
                                 Thuật ngữ đời thường
                             </a>                                            </div>
                                            <!-- small-post-content -->
                                            <h5 class="title"><a href="https://nhacly.com/tiem-phong-mui-mr1-la-gi-1654048761/">Tiêm phòng mũi dpt4 1 mr1 là mũi gì? – http://139.180.218.5</a></h5>
                                            <!-- // title_small_post -->
                                        </div>
                                        <!-- // small-post-content -->
                                    </li>
                                    <!-- // small_post -->
                                </ul>  
                            </div>

                                                        <!-- small-list-post -->
                            <div class="small-list-post col-lg-6 col-md-6 col-sm-6 col-xs-12  mr-bot20">
                                <ul>
                                    <li class="small-post clearfix">
                                        <!-- small_post -->
                                                                                <div class="img-small-post">
                                            <a href="https://nhacly.com/tiem-an-toan-la-gi-1654048596/">
                                                                                                    <img src="https://nhacly.com/wp-content/uploads/2022/06/13-150x150.jpg" alt="HƯỚNG DẪN CÁC TIÊU CHÍ TIÊM AN TOÀN CỦA BỘ Y TẾ">
                                                                                            </a>
                                            <!-- img-small-post -->
                                        </div>
                                        <!-- // img-small-post -->
                                                                                <div class="small-post-content">
                                            <div class="mg-blog-category"> 
                                                <a class="newsup-categories category-color-1" href="https://nhacly.com/category/thuat-ngu-doi-thuong/" alt="View all posts in Thuật ngữ đời thường"> 
                                 Thuật ngữ đời thường
                             </a>                                            </div>
                                            <!-- small-post-content -->
                                            <h5 class="title"><a href="https://nhacly.com/tiem-an-toan-la-gi-1654048596/">HƯỚNG DẪN CÁC TIÊU CHÍ TIÊM AN TOÀN CỦA BỘ Y TẾ</a></h5>
                                            <!-- // title_small_post -->
                                        </div>
                                        <!-- // small-post-content -->
                                    </li>
                                    <!-- // small_post -->
                                </ul>  
                            </div>

                                                        <!-- small-list-post -->
                            <div class="small-list-post col-lg-6 col-md-6 col-sm-6 col-xs-12  mr-bot20">
                                <ul>
                                    <li class="small-post clearfix">
                                        <!-- small_post -->
                                                                                <div class="img-small-post">
                                            <a href="https://nhacly.com/tire-la-gi-1654048418/">
                                                                                                    <img src="https://nhacly.com/wp-content/uploads/2022/02/cropped-logo-1-150x150.png" alt="Nghĩa Của Từ Tire Là Gì – Tyre Là Gì, Nghĩa Của Từ Tyre">
                                                                                            </a>
                                            <!-- img-small-post -->
                                        </div>
                                        <!-- // img-small-post -->
                                                                                <div class="small-post-content">
                                            <div class="mg-blog-category"> 
                                                <a class="newsup-categories category-color-1" href="https://nhacly.com/category/thuat-ngu-doi-thuong/" alt="View all posts in Thuật ngữ đời thường"> 
                                 Thuật ngữ đời thường
                             </a>                                            </div>
                                            <!-- small-post-content -->
                                            <h5 class="title"><a href="https://nhacly.com/tire-la-gi-1654048418/">Nghĩa Của Từ Tire Là Gì – Tyre Là Gì, Nghĩa Của Từ Tyre</a></h5>
                                            <!-- // title_small_post -->
                                        </div>
                                        <!-- // small-post-content -->
                                    </li>
                                    <!-- // small_post -->
                                </ul>  
                            </div>

                                                        <!-- small-list-post -->
                            <div class="small-list-post col-lg-6 col-md-6 col-sm-6 col-xs-12  mr-bot20">
                                <ul>
                                    <li class="small-post clearfix">
                                        <!-- small_post -->
                                                                                <div class="img-small-post">
                                            <a href="https://nhacly.com/tire-cord-la-gi-1654048339/">
                                                                                                    <img src="https://nhacly.com/wp-content/uploads/2022/06/kbh_tire_01-2-150x150.jpg" alt="Tire & Industrial Reinforcements PU | Hyosung Việt Nam">
                                                                                            </a>
                                            <!-- img-small-post -->
                                        </div>
                                        <!-- // img-small-post -->
                                                                                <div class="small-post-content">
                                            <div class="mg-blog-category"> 
                                                <a class="newsup-categories category-color-1" href="https://nhacly.com/category/thuat-ngu-doi-thuong/" alt="View all posts in Thuật ngữ đời thường"> 
                                 Thuật ngữ đời thường
                             </a>                                            </div>
                                            <!-- small-post-content -->
                                            <h5 class="title"><a href="https://nhacly.com/tire-cord-la-gi-1654048339/">Tire & Industrial Reinforcements PU | Hyosung Việt Nam</a></h5>
                                            <!-- // title_small_post -->
                                        </div>
                                        <!-- // small-post-content -->
                                    </li>
                                    <!-- // small_post -->
                                </ul>  
                            </div>

                                                        <!-- small-list-post -->
                            <div class="small-list-post col-lg-6 col-md-6 col-sm-6 col-xs-12  mr-bot20">
                                <ul>
                                    <li class="small-post clearfix">
                                        <!-- small_post -->
                                                                                <div class="img-small-post">
                                            <a href="https://nhacly.com/tirads-la-gi-1654048236/">
                                                                                                    <img src="https://nhacly.com/wp-content/uploads/2022/02/cropped-logo-1-150x150.png" alt="Phân loại Tirads trong siêu âm đánh giá nhân giáp">
                                                                                            </a>
                                            <!-- img-small-post -->
                                        </div>
                                        <!-- // img-small-post -->
                                                                                <div class="small-post-content">
                                            <div class="mg-blog-category"> 
                                                <a class="newsup-categories category-color-1" href="https://nhacly.com/category/thuat-ngu-doi-thuong/" alt="View all posts in Thuật ngữ đời thường"> 
                                 Thuật ngữ đời thường
                             </a>                                            </div>
                                            <!-- small-post-content -->
                                            <h5 class="title"><a href="https://nhacly.com/tirads-la-gi-1654048236/">Phân loại Tirads trong siêu âm đánh giá nhân giáp</a></h5>
                                            <!-- // title_small_post -->
                                        </div>
                                        <!-- // small-post-content -->
                                    </li>
                                    <!-- // small_post -->
                                </ul>  
                            </div>

                                                        <!-- small-list-post -->
                            <div class="small-list-post col-lg-6 col-md-6 col-sm-6 col-xs-12  mr-bot20">
                                <ul>
                                    <li class="small-post clearfix">
                                        <!-- small_post -->
                                                                                <div class="img-small-post">
                                            <a href="https://nhacly.com/tirads-3-la-gi-1654048149/">
                                                                                                    <img src="https://nhacly.com/wp-content/uploads/2022/02/cropped-logo-1-150x150.png" alt="Bệnh tuyến giáp tirads 3 là gì?">
                                                                                            </a>
                                            <!-- img-small-post -->
                                        </div>
                                        <!-- // img-small-post -->
                                                                                <div class="small-post-content">
                                            <div class="mg-blog-category"> 
                                                <a class="newsup-categories category-color-1" href="https://nhacly.com/category/thuat-ngu-doi-thuong/" alt="View all posts in Thuật ngữ đời thường"> 
                                 Thuật ngữ đời thường
                             </a>                                            </div>
                                            <!-- small-post-content -->
                                            <h5 class="title"><a href="https://nhacly.com/tirads-3-la-gi-1654048149/">Bệnh tuyến giáp tirads 3 là gì?</a></h5>
                                            <!-- // title_small_post -->
                                        </div>
                                        <!-- // small-post-content -->
                                    </li>
                                    <!-- // small_post -->
                                </ul>  
                            </div>

                                                        <!-- small-list-post -->
                            <div class="small-list-post col-lg-6 col-md-6 col-sm-6 col-xs-12  mr-bot20">
                                <ul>
                                    <li class="small-post clearfix">
                                        <!-- small_post -->
                                                                                <div class="img-small-post">
                                            <a href="https://nhacly.com/tips-la-gi-tren-facebook-1654048065/">
                                                                                                    <img src="https://nhacly.com/wp-content/uploads/2022/02/cropped-logo-1-150x150.png" alt="Tip, Tips là gì? Phân biệt giữa Tip và Tips các đúng nhất">
                                                                                            </a>
                                            <!-- img-small-post -->
                                        </div>
                                        <!-- // img-small-post -->
                                                                                <div class="small-post-content">
                                            <div class="mg-blog-category"> 
                                                <a class="newsup-categories category-color-1" href="https://nhacly.com/category/thuat-ngu-doi-thuong/" alt="View all posts in Thuật ngữ đời thường"> 
                                 Thuật ngữ đời thường
                             </a>                                            </div>
                                            <!-- small-post-content -->
                                            <h5 class="title"><a href="https://nhacly.com/tips-la-gi-tren-facebook-1654048065/">Tip, Tips là gì? Phân biệt giữa Tip và Tips các đúng nhất</a></h5>
                                            <!-- // title_small_post -->
                                        </div>
                                        <!-- // small-post-content -->
                                    </li>
                                    <!-- // small_post -->
                                </ul>  
                            </div>

                                                        <!-- small-list-post -->
                            <div class="small-list-post col-lg-6 col-md-6 col-sm-6 col-xs-12  mr-bot20">
                                <ul>
                                    <li class="small-post clearfix">
                                        <!-- small_post -->
                                                                                <div class="img-small-post">
                                            <a href="https://nhacly.com/tipping-point-la-gi-1654047978/">
                                                                                                    <img src="https://nhacly.com/wp-content/uploads/2022/06/tipping-point-2-min-150x150.png" alt="Tipping Point Là Gì? Tipping Point Có Ý Nghĩa Gì Trong Forex?">
                                                                                            </a>
                                            <!-- img-small-post -->
                                        </div>
                                        <!-- // img-small-post -->
                                                                                <div class="small-post-content">
                                            <div class="mg-blog-category"> 
                                                <a class="newsup-categories category-color-1" href="https://nhacly.com/category/thuat-ngu-doi-thuong/" alt="View all posts in Thuật ngữ đời thường"> 
                                 Thuật ngữ đời thường
                             </a>                                            </div>
                                            <!-- small-post-content -->
                                            <h5 class="title"><a href="https://nhacly.com/tipping-point-la-gi-1654047978/">Tipping Point Là Gì? Tipping Point Có Ý Nghĩa Gì Trong Forex?</a></h5>
                                            <!-- // title_small_post -->
                                        </div>
                                        <!-- // small-post-content -->
                                    </li>
                                    <!-- // small_post -->
                                </ul>  
                            </div>

                                                        <!-- small-list-post -->
                            <div class="small-list-post col-lg-6 col-md-6 col-sm-6 col-xs-12  mr-bot20">
                                <ul>
                                    <li class="small-post clearfix">
                                        <!-- small_post -->
                                                                                <div class="img-small-post">
                                            <a href="https://nhacly.com/tinh-the-ngam-nuoc-la-gi-1654047717/">
                                                                                                    <img src="https://nhacly.com/wp-content/uploads/2022/02/cropped-logo-1-150x150.png" alt="Tinh thể ngậm nước Định nghĩa – Tài liệu text">
                                                                                            </a>
                                            <!-- img-small-post -->
                                        </div>
                                        <!-- // img-small-post -->
                                                                                <div class="small-post-content">
                                            <div class="mg-blog-category"> 
                                                <a class="newsup-categories category-color-1" href="https://nhacly.com/category/thuat-ngu-doi-thuong/" alt="View all posts in Thuật ngữ đời thường"> 
                                 Thuật ngữ đời thường
                             </a>                                            </div>
                                            <!-- small-post-content -->
                                            <h5 class="title"><a href="https://nhacly.com/tinh-the-ngam-nuoc-la-gi-1654047717/">Tinh thể ngậm nước Định nghĩa – Tài liệu text</a></h5>
                                            <!-- // title_small_post -->
                                        </div>
                                        <!-- // small-post-content -->
                                    </li>
                                    <!-- // small_post -->
                                </ul>  
                            </div>

                                                        <!-- small-list-post -->
                            <div class="small-list-post col-lg-6 col-md-6 col-sm-6 col-xs-12  mr-bot20">
                                <ul>
                                    <li class="small-post clearfix">
                                        <!-- small_post -->
                                                                                <div class="img-small-post">
                                            <a href="https://nhacly.com/tinh-than-hop-tac-la-gi-1654047457/">
                                                                                                    <img src="https://nhacly.com/wp-content/uploads/2022/06/suy-nghi-ve-y-nghia-cua-tinh-than-hop-tac-de-thanh-cong-1-150x150.jpg" alt="Suy nghĩ về ý nghĩa của tinh thần hợp tác để thành công trong cuộc sống – http://139.180.218.5">
                                                                                            </a>
                                            <!-- img-small-post -->
                                        </div>
                                        <!-- // img-small-post -->
                                                                                <div class="small-post-content">
                                            <div class="mg-blog-category"> 
                                                <a class="newsup-categories category-color-1" href="https://nhacly.com/category/thuat-ngu-doi-thuong/" alt="View all posts in Thuật ngữ đời thường"> 
                                 Thuật ngữ đời thường
                             </a>                                            </div>
                                            <!-- small-post-content -->
                                            <h5 class="title"><a href="https://nhacly.com/tinh-than-hop-tac-la-gi-1654047457/">Suy nghĩ về ý nghĩa của tinh thần hợp tác để thành công trong cuộc sống – http://139.180.218.5</a></h5>
                                            <!-- // title_small_post -->
                                        </div>
                                        <!-- // small-post-content -->
                                    </li>
                                    <!-- // small_post -->
                                </ul>  
                            </div>

                                                        <!-- small-list-post -->
                            <div class="small-list-post col-lg-6 col-md-6 col-sm-6 col-xs-12  mr-bot20">
                                <ul>
                                    <li class="small-post clearfix">
                                        <!-- small_post -->
                                                                                <div class="img-small-post">
                                            <a href="https://nhacly.com/tinh-chinh-la-gi-1654047283/">
                                                                                                    <img src="https://nhacly.com/wp-content/uploads/2022/02/cropped-logo-1-150x150.png" alt="Ý NGHĨA CỦA TINH CHỈNH (NÓ LÀ GÌ, KHÁI NIỆM VÀ ĐỊNH NGHĨA) – BIỂU THỨC – 2022">
                                                                                            </a>
                                            <!-- img-small-post -->
                                        </div>
                                        <!-- // img-small-post -->
                                                                                <div class="small-post-content">
                                            <div class="mg-blog-category"> 
                                                <a class="newsup-categories category-color-1" href="https://nhacly.com/category/thuat-ngu-doi-thuong/" alt="View all posts in Thuật ngữ đời thường"> 
                                 Thuật ngữ đời thường
                             </a>                                            </div>
                                            <!-- small-post-content -->
                                            <h5 class="title"><a href="https://nhacly.com/tinh-chinh-la-gi-1654047283/">Ý NGHĨA CỦA TINH CHỈNH (NÓ LÀ GÌ, KHÁI NIỆM VÀ ĐỊNH NGHĨA) – BIỂU THỨC – 2022</a></h5>
                                            <!-- // title_small_post -->
                                        </div>
                                        <!-- // small-post-content -->
                                    </li>
                                    <!-- // small_post -->
                                </ul>  
                            </div>

                                                        <!-- small-list-post -->
                            <div class="small-list-post col-lg-6 col-md-6 col-sm-6 col-xs-12  mr-bot20">
                                <ul>
                                    <li class="small-post clearfix">
                                        <!-- small_post -->
                                                                                <div class="img-small-post">
                                            <a href="https://nhacly.com/tinea-corporis-la-gi-1654047112/">
                                                                                                    <img src="https://nhacly.com/wp-content/uploads/2022/06/3-93-1024x683-1-150x150.jpg" alt="Bệnh hắc lào và những điều cần biết | Pacific Cross Việt Nam">
                                                                                            </a>
                                            <!-- img-small-post -->
                                        </div>
                                        <!-- // img-small-post -->
                                                                                <div class="small-post-content">
                                            <div class="mg-blog-category"> 
                                                <a class="newsup-categories category-color-1" href="https://nhacly.com/category/thuat-ngu-doi-thuong/" alt="View all posts in Thuật ngữ đời thường"> 
                                 Thuật ngữ đời thường
                             </a>                                            </div>
                                            <!-- small-post-content -->
                                            <h5 class="title"><a href="https://nhacly.com/tinea-corporis-la-gi-1654047112/">Bệnh hắc lào và những điều cần biết | Pacific Cross Việt Nam</a></h5>
                                            <!-- // title_small_post -->
                                        </div>
                                        <!-- // small-post-content -->
                                    </li>
                                    <!-- // small_post -->
                                </ul>  
                            </div>

                                                        <!-- small-list-post -->
                            <div class="small-list-post col-lg-6 col-md-6 col-sm-6 col-xs-12  mr-bot20">
                                <ul>
                                    <li class="small-post clearfix">
                                        <!-- small_post -->
                                                                                <div class="img-small-post">
                                            <a href="https://nhacly.com/tincture-la-gi-1654047047/">
                                                                                                    <img src="https://nhacly.com/wp-content/uploads/2022/02/cropped-logo-1-150x150.png" alt="Thuốc Azolen Tincture: Công dụng, chỉ định và lưu ý khi dùng">
                                                                                            </a>
                                            <!-- img-small-post -->
                                        </div>
                                        <!-- // img-small-post -->
                                                                                <div class="small-post-content">
                                            <div class="mg-blog-category"> 
                                                <a class="newsup-categories category-color-1" href="https://nhacly.com/category/thuat-ngu-doi-thuong/" alt="View all posts in Thuật ngữ đời thường"> 
                                 Thuật ngữ đời thường
                             </a>                                            </div>
                                            <!-- small-post-content -->
                                            <h5 class="title"><a href="https://nhacly.com/tincture-la-gi-1654047047/">Thuốc Azolen Tincture: Công dụng, chỉ định và lưu ý khi dùng</a></h5>
                                            <!-- // title_small_post -->
                                        </div>
                                        <!-- // small-post-content -->
                                    </li>
                                    <!-- // small_post -->
                                </ul>  
                            </div>

                                                        <!-- small-list-post -->
                            <div class="small-list-post col-lg-6 col-md-6 col-sm-6 col-xs-12  mr-bot20">
                                <ul>
                                    <li class="small-post clearfix">
                                        <!-- small_post -->
                                                                                <div class="img-small-post">
                                            <a href="https://nhacly.com/tin-nhan-mms-la-gi-1654046937/">
                                                                                                    <img src="https://nhacly.com/wp-content/uploads/2022/02/cropped-logo-1-150x150.png" alt="Tin nhắn MMS là gì? Khác gì so với SMS? Cách gửi tin nhắn MMS – http://139.180.218.5">
                                                                                            </a>
                                            <!-- img-small-post -->
                                        </div>
                                        <!-- // img-small-post -->
                                                                                <div class="small-post-content">
                                            <div class="mg-blog-category"> 
                                                <a class="newsup-categories category-color-1" href="https://nhacly.com/category/thuat-ngu-doi-thuong/" alt="View all posts in Thuật ngữ đời thường"> 
                                 Thuật ngữ đời thường
                             </a>                                            </div>
                                            <!-- small-post-content -->
                                            <h5 class="title"><a href="https://nhacly.com/tin-nhan-mms-la-gi-1654046937/">Tin nhắn MMS là gì? Khác gì so với SMS? Cách gửi tin nhắn MMS – http://139.180.218.5</a></h5>
                                            <!-- // title_small_post -->
                                        </div>
                                        <!-- // small-post-content -->
                                    </li>
                                    <!-- // small_post -->
                                </ul>  
                            </div>

                                                        <!-- small-list-post -->
                            <div class="small-list-post col-lg-6 col-md-6 col-sm-6 col-xs-12  mr-bot20">
                                <ul>
                                    <li class="small-post clearfix">
                                        <!-- small_post -->
                                                                                <div class="img-small-post">
                                            <a href="https://nhacly.com/timekeeping-la-gi-1654046680/">
                                                                                                    <img src="https://nhacly.com/wp-content/uploads/2022/02/cropped-logo-1-150x150.png" alt="Timekeeping là gì? Chức năng Timekeeping trên đồng hồ có gì đặc biệt?">
                                                                                            </a>
                                            <!-- img-small-post -->
                                        </div>
                                        <!-- // img-small-post -->
                                                                                <div class="small-post-content">
                                            <div class="mg-blog-category"> 
                                                <a class="newsup-categories category-color-1" href="https://nhacly.com/category/thuat-ngu-doi-thuong/" alt="View all posts in Thuật ngữ đời thường"> 
                                 Thuật ngữ đời thường
                             </a>                                            </div>
                                            <!-- small-post-content -->
                                            <h5 class="title"><a href="https://nhacly.com/timekeeping-la-gi-1654046680/">Timekeeping là gì? Chức năng Timekeeping trên đồng hồ có gì đặc biệt?</a></h5>
                                            <!-- // title_small_post -->
                                        </div>
                                        <!-- // small-post-content -->
                                    </li>
                                    <!-- // small_post -->
                                </ul>  
                            </div>

                                                        <!-- small-list-post -->
                            <div class="small-list-post col-lg-6 col-md-6 col-sm-6 col-xs-12  mr-bot20">
                                <ul>
                                    <li class="small-post clearfix">
                                        <!-- small_post -->
                                                                                <div class="img-small-post">
                                            <a href="https://nhacly.com/time-deposit-la-gi-1654046594/">
                                                                                                    <img src="https://nhacly.com/wp-content/uploads/2022/06/mutualfund-km8f-621x414livemint1563694727746-1566810222928654924641-150x150.jpg" alt="Tiền gửi có kì hạn (Time deposit) là gì? Qui định chung về tiền gửi có kì hạn">
                                                                                            </a>
                                            <!-- img-small-post -->
                                        </div>
                                        <!-- // img-small-post -->
                                                                                <div class="small-post-content">
                                            <div class="mg-blog-category"> 
                                                <a class="newsup-categories category-color-1" href="https://nhacly.com/category/thuat-ngu-doi-thuong/" alt="View all posts in Thuật ngữ đời thường"> 
                                 Thuật ngữ đời thường
                             </a>                                            </div>
                                            <!-- small-post-content -->
                                            <h5 class="title"><a href="https://nhacly.com/time-deposit-la-gi-1654046594/">Tiền gửi có kì hạn (Time deposit) là gì? Qui định chung về tiền gửi có kì hạn</a></h5>
                                            <!-- // title_small_post -->
                                        </div>
                                        <!-- // small-post-content -->
                                    </li>
                                    <!-- // small_post -->
                                </ul>  
                            </div>

                                                        <!-- small-list-post -->
                            <div class="small-list-post col-lg-6 col-md-6 col-sm-6 col-xs-12  mr-bot20">
                                <ul>
                                    <li class="small-post clearfix">
                                        <!-- small_post -->
                                                                                <div class="img-small-post">
                                            <a href="https://nhacly.com/tilt-la-gi-1654046521/">
                                                                                                    <img src="https://nhacly.com/wp-content/uploads/2022/02/cropped-logo-1-150x150.png" alt="” Tilt Là Gì – Tilt Có Nghĩa Là Gì">
                                                                                            </a>
                                            <!-- img-small-post -->
                                        </div>
                                        <!-- // img-small-post -->
                                                                                <div class="small-post-content">
                                            <div class="mg-blog-category"> 
                                                <a class="newsup-categories category-color-1" href="https://nhacly.com/category/thuat-ngu-doi-thuong/" alt="View all posts in Thuật ngữ đời thường"> 
                                 Thuật ngữ đời thường
                             </a>                                            </div>
                                            <!-- small-post-content -->
                                            <h5 class="title"><a href="https://nhacly.com/tilt-la-gi-1654046521/">” Tilt Là Gì – Tilt Có Nghĩa Là Gì</a></h5>
                                            <!-- // title_small_post -->
                                        </div>
                                        <!-- // small-post-content -->
                                    </li>
                                    <!-- // small_post -->
                                </ul>  
                            </div>

                                                        <!-- small-list-post -->
                            <div class="small-list-post col-lg-6 col-md-6 col-sm-6 col-xs-12  mr-bot20">
                                <ul>
                                    <li class="small-post clearfix">
                                        <!-- small_post -->
                                                                                <div class="img-small-post">
                                            <a href="https://nhacly.com/till-la-gi-1654046439/">
                                                                                                    <img src="https://nhacly.com/wp-content/uploads/2022/02/cropped-logo-1-150x150.png" alt="Nghĩa Của Từ Till Là Gì, Nghĩa Của Từ Till, Định Nghĩa, Ví Dụ, Giải Thích">
                                                                                            </a>
                                            <!-- img-small-post -->
                                        </div>
                                        <!-- // img-small-post -->
                                                                                <div class="small-post-content">
                                            <div class="mg-blog-category"> 
                                                <a class="newsup-categories category-color-1" href="https://nhacly.com/category/thuat-ngu-doi-thuong/" alt="View all posts in Thuật ngữ đời thường"> 
                                 Thuật ngữ đời thường
                             </a>                                            </div>
                                            <!-- small-post-content -->
                                            <h5 class="title"><a href="https://nhacly.com/till-la-gi-1654046439/">Nghĩa Của Từ Till Là Gì, Nghĩa Của Từ Till, Định Nghĩa, Ví Dụ, Giải Thích</a></h5>
                                            <!-- // title_small_post -->
                                        </div>
                                        <!-- // small-post-content -->
                                    </li>
                                    <!-- // small_post -->
                                </ul>  
                            </div>

                                                        <!-- small-list-post -->
                            <div class="small-list-post col-lg-6 col-md-6 col-sm-6 col-xs-12  mr-bot20">
                                <ul>
                                    <li class="small-post clearfix">
                                        <!-- small_post -->
                                                                                <div class="img-small-post">
                                            <a href="https://nhacly.com/tiff-la-gi-1654046244/">
                                                                                                    <img src="https://nhacly.com/wp-content/uploads/2022/02/cropped-logo-1-150x150.png" alt="Định dạng ảnh TIFF là gì? Cách chuyển đổi file TIFF sang PDF, JPG, PNG – http://139.180.218.5">
                                                                                            </a>
                                            <!-- img-small-post -->
                                        </div>
                                        <!-- // img-small-post -->
                                                                                <div class="small-post-content">
                                            <div class="mg-blog-category"> 
                                                <a class="newsup-categories category-color-1" href="https://nhacly.com/category/thuat-ngu-doi-thuong/" alt="View all posts in Thuật ngữ đời thường"> 
                                 Thuật ngữ đời thường
                             </a>                                            </div>
                                            <!-- small-post-content -->
                                            <h5 class="title"><a href="https://nhacly.com/tiff-la-gi-1654046244/">Định dạng ảnh TIFF là gì? Cách chuyển đổi file TIFF sang PDF, JPG, PNG – http://139.180.218.5</a></h5>
                                            <!-- // title_small_post -->
                                        </div>
                                        <!-- // small-post-content -->
                                    </li>
                                    <!-- // small_post -->
                                </ul>  
                            </div>

                                                        <!-- small-list-post -->
                            <div class="small-list-post col-lg-6 col-md-6 col-sm-6 col-xs-12  mr-bot20">
                                <ul>
                                    <li class="small-post clearfix">
                                        <!-- small_post -->
                                                                                <div class="img-small-post">
                                            <a href="https://nhacly.com/tie-up-la-gi-1654046161/">
                                                                                                    <img src="https://nhacly.com/wp-content/uploads/2022/02/cropped-logo-1-150x150.png" alt="Tie up nghĩa là gì">
                                                                                            </a>
                                            <!-- img-small-post -->
                                        </div>
                                        <!-- // img-small-post -->
                                                                                <div class="small-post-content">
                                            <div class="mg-blog-category"> 
                                                <a class="newsup-categories category-color-1" href="https://nhacly.com/category/thuat-ngu-doi-thuong/" alt="View all posts in Thuật ngữ đời thường"> 
                                 Thuật ngữ đời thường
                             </a>                                            </div>
                                            <!-- small-post-content -->
                                            <h5 class="title"><a href="https://nhacly.com/tie-up-la-gi-1654046161/">Tie up nghĩa là gì</a></h5>
                                            <!-- // title_small_post -->
                                        </div>
                                        <!-- // small-post-content -->
                                    </li>
                                    <!-- // small_post -->
                                </ul>  
                            </div>

                                                        <!-- small-list-post -->
                            <div class="small-list-post col-lg-6 col-md-6 col-sm-6 col-xs-12  mr-bot20">
                                <ul>
                                    <li class="small-post clearfix">
                                        <!-- small_post -->
                                                                                <div class="img-small-post">
                                            <a href="https://nhacly.com/tie-dye-la-gi-1654046070/">
                                                                                                    <img src="https://nhacly.com/wp-content/uploads/2022/06/tie-dye-2-1-1024x576-1-150x150.jpg" alt="Tie-Dye là gì? Xu hướng thời trang hoài cổ nhưng hiện đại">
                                                                                            </a>
                                            <!-- img-small-post -->
                                        </div>
                                        <!-- // img-small-post -->
                                                                                <div class="small-post-content">
                                            <div class="mg-blog-category"> 
                                                <a class="newsup-categories category-color-1" href="https://nhacly.com/category/thuat-ngu-doi-thuong/" alt="View all posts in Thuật ngữ đời thường"> 
                                 Thuật ngữ đời thường
                             </a>                                            </div>
                                            <!-- small-post-content -->
                                            <h5 class="title"><a href="https://nhacly.com/tie-dye-la-gi-1654046070/">Tie-Dye là gì? Xu hướng thời trang hoài cổ nhưng hiện đại</a></h5>
                                            <!-- // title_small_post -->
                                        </div>
                                        <!-- // small-post-content -->
                                    </li>
                                    <!-- // small_post -->
                                </ul>  
                            </div>

                                                        <!-- small-list-post -->
                            <div class="small-list-post col-lg-6 col-md-6 col-sm-6 col-xs-12  mr-bot20">
                                <ul>
                                    <li class="small-post clearfix">
                                        <!-- small_post -->
                                                                                <div class="img-small-post">
                                            <a href="https://nhacly.com/ticonet-la-thuoc-gi-1654045983/">
                                                                                                    <img src="https://nhacly.com/wp-content/uploads/2022/02/cropped-logo-1-150x150.png" alt="Ticonet">
                                                                                            </a>
                                            <!-- img-small-post -->
                                        </div>
                                        <!-- // img-small-post -->
                                                                                <div class="small-post-content">
                                            <div class="mg-blog-category"> 
                                                <a class="newsup-categories category-color-1" href="https://nhacly.com/category/thuat-ngu-doi-thuong/" alt="View all posts in Thuật ngữ đời thường"> 
                                 Thuật ngữ đời thường
                             </a>                                            </div>
                                            <!-- small-post-content -->
                                            <h5 class="title"><a href="https://nhacly.com/ticonet-la-thuoc-gi-1654045983/">Ticonet</a></h5>
                                            <!-- // title_small_post -->
                                        </div>
                                        <!-- // small-post-content -->
                                    </li>
                                    <!-- // small_post -->
                                </ul>  
                            </div>

                                                        <!-- small-list-post -->
                            <div class="small-list-post col-lg-6 col-md-6 col-sm-6 col-xs-12  mr-bot20">
                                <ul>
                                    <li class="small-post clearfix">
                                        <!-- small_post -->
                                                                                <div class="img-small-post">
                                            <a href="https://nhacly.com/thuc-don-tieng-anh-la-gi-1654045720/">
                                                                                                    <img src="https://nhacly.com/wp-content/uploads/2022/02/cropped-logo-1-150x150.png" alt="thực đơn trong tiếng Tiếng Anh – Tiếng Việt-Tiếng Anh | Glosbe">
                                                                                            </a>
                                            <!-- img-small-post -->
                                        </div>
                                        <!-- // img-small-post -->
                                                                                <div class="small-post-content">
                                            <div class="mg-blog-category"> 
                                                <a class="newsup-categories category-color-1" href="https://nhacly.com/category/thuat-ngu-doi-thuong/" alt="View all posts in Thuật ngữ đời thường"> 
                                 Thuật ngữ đời thường
                             </a>                                            </div>
                                            <!-- small-post-content -->
                                            <h5 class="title"><a href="https://nhacly.com/thuc-don-tieng-anh-la-gi-1654045720/">thực đơn trong tiếng Tiếng Anh – Tiếng Việt-Tiếng Anh | Glosbe</a></h5>
                                            <!-- // title_small_post -->
                                        </div>
                                        <!-- // small-post-content -->
                                    </li>
                                    <!-- // small_post -->
                                </ul>  
                            </div>

                                                        <!-- small-list-post -->
                            <div class="small-list-post col-lg-6 col-md-6 col-sm-6 col-xs-12  mr-bot20">
                                <ul>
                                    <li class="small-post clearfix">
                                        <!-- small_post -->
                                                                                <div class="img-small-post">
                                            <a href="https://nhacly.com/thuc-tap-tieng-anh-la-gi-1654045549/">
                                                                                                    <img src="https://nhacly.com/wp-content/uploads/2022/06/72436-150x150.jpg" alt="“Thực tập” trong tiếng Anh: Định nghĩa, ví dụ">
                                                                                            </a>
                                            <!-- img-small-post -->
                                        </div>
                                        <!-- // img-small-post -->
                                                                                <div class="small-post-content">
                                            <div class="mg-blog-category"> 
                                                <a class="newsup-categories category-color-1" href="https://nhacly.com/category/thuat-ngu-doi-thuong/" alt="View all posts in Thuật ngữ đời thường"> 
                                 Thuật ngữ đời thường
                             </a>                                            </div>
                                            <!-- small-post-content -->
                                            <h5 class="title"><a href="https://nhacly.com/thuc-tap-tieng-anh-la-gi-1654045549/">“Thực tập” trong tiếng Anh: Định nghĩa, ví dụ</a></h5>
                                            <!-- // title_small_post -->
                                        </div>
                                        <!-- // small-post-content -->
                                    </li>
                                    <!-- // small_post -->
                                </ul>  
                            </div>

                                                        <!-- small-list-post -->
                            <div class="small-list-post col-lg-6 col-md-6 col-sm-6 col-xs-12  mr-bot20">
                                <ul>
                                    <li class="small-post clearfix">
                                        <!-- small_post -->
                                                                                <div class="img-small-post">
                                            <a href="https://nhacly.com/thuc-trang-tieng-anh-la-gi-1654045460/">
                                                                                                    <img src="https://nhacly.com/wp-content/uploads/2022/06/thuc-trang-2-150x150.jpg" alt="Thực trạng là gì? Thực trạng tiếng Anh là gì? Bạn đã biết chưa?">
                                                                                            </a>
                                            <!-- img-small-post -->
                                        </div>
                                        <!-- // img-small-post -->
                                                                                <div class="small-post-content">
                                            <div class="mg-blog-category"> 
                                                <a class="newsup-categories category-color-1" href="https://nhacly.com/category/thuat-ngu-doi-thuong/" alt="View all posts in Thuật ngữ đời thường"> 
                                 Thuật ngữ đời thường
                             </a>                                            </div>
                                            <!-- small-post-content -->
                                            <h5 class="title"><a href="https://nhacly.com/thuc-trang-tieng-anh-la-gi-1654045460/">Thực trạng là gì? Thực trạng tiếng Anh là gì? Bạn đã biết chưa?</a></h5>
                                            <!-- // title_small_post -->
                                        </div>
                                        <!-- // small-post-content -->
                                    </li>
                                    <!-- // small_post -->
                                </ul>  
                            </div>

                                                        <!-- small-list-post -->
                            <div class="small-list-post col-lg-6 col-md-6 col-sm-6 col-xs-12  mr-bot20">
                                <ul>
                                    <li class="small-post clearfix">
                                        <!-- small_post -->
                                                                                <div class="img-small-post">
                                            <a href="https://nhacly.com/thuc-pham-huu-co-organic-la-gi-1654045378/">
                                                                                                    <img src="https://nhacly.com/wp-content/uploads/2022/02/cropped-logo-1-150x150.png" alt="Organic là gì? 6 lợi ích thực phẩm hữu cơ mang lại cho sức khỏe">
                                                                                            </a>
                                            <!-- img-small-post -->
                                        </div>
                                        <!-- // img-small-post -->
                                                                                <div class="small-post-content">
                                            <div class="mg-blog-category"> 
                                                <a class="newsup-categories category-color-1" href="https://nhacly.com/category/thuat-ngu-doi-thuong/" alt="View all posts in Thuật ngữ đời thường"> 
                                 Thuật ngữ đời thường
                             </a>                                            </div>
                                            <!-- small-post-content -->
                                            <h5 class="title"><a href="https://nhacly.com/thuc-pham-huu-co-organic-la-gi-1654045378/">Organic là gì? 6 lợi ích thực phẩm hữu cơ mang lại cho sức khỏe</a></h5>
                                            <!-- // title_small_post -->
                                        </div>
                                        <!-- // small-post-content -->
                                    </li>
                                    <!-- // small_post -->
                                </ul>  
                            </div>

                                                        <!-- small-list-post -->
                            <div class="small-list-post col-lg-6 col-md-6 col-sm-6 col-xs-12  mr-bot20">
                                <ul>
                                    <li class="small-post clearfix">
                                        <!-- small_post -->
                                                                                <div class="img-small-post">
                                            <a href="https://nhacly.com/thuc-hu-la-gi-1654045311/">
                                                                                                    <img src="https://nhacly.com/wp-content/uploads/2022/06/van-hoa-1-150x150.jpg" alt="Top 18 nghĩa của từ thực hư là gì hay nhất 2022">
                                                                                            </a>
                                            <!-- img-small-post -->
                                        </div>
                                        <!-- // img-small-post -->
                                                                                <div class="small-post-content">
                                            <div class="mg-blog-category"> 
                                                <a class="newsup-categories category-color-1" href="https://nhacly.com/category/thuat-ngu-doi-thuong/" alt="View all posts in Thuật ngữ đời thường"> 
                                 Thuật ngữ đời thường
                             </a>                                            </div>
                                            <!-- small-post-content -->
                                            <h5 class="title"><a href="https://nhacly.com/thuc-hu-la-gi-1654045311/">Top 18 nghĩa của từ thực hư là gì hay nhất 2022</a></h5>
                                            <!-- // title_small_post -->
                                        </div>
                                        <!-- // small-post-content -->
                                    </li>
                                    <!-- // small_post -->
                                </ul>  
                            </div>

                                                        <!-- small-list-post -->
                            <div class="small-list-post col-lg-6 col-md-6 col-sm-6 col-xs-12  mr-bot20">
                                <ul>
                                    <li class="small-post clearfix">
                                        <!-- small_post -->
                                                                                <div class="img-small-post">
                                            <a href="https://nhacly.com/thuc-hanh-quyen-cong-to-la-gi-1654045206/">
                                                                                                    <img src="https://nhacly.com/wp-content/uploads/2022/02/cropped-logo-1-150x150.png" alt="Thực hành quyền công tố trong giai đoạn xét xử vụ án hình sự(*)">
                                                                                            </a>
                                            <!-- img-small-post -->
                                        </div>
                                        <!-- // img-small-post -->
                                                                                <div class="small-post-content">
                                            <div class="mg-blog-category"> 
                                                <a class="newsup-categories category-color-1" href="https://nhacly.com/category/thuat-ngu-doi-thuong/" alt="View all posts in Thuật ngữ đời thường"> 
                                 Thuật ngữ đời thường
                             </a>                                            </div>
                                            <!-- small-post-content -->
                                            <h5 class="title"><a href="https://nhacly.com/thuc-hanh-quyen-cong-to-la-gi-1654045206/">Thực hành quyền công tố trong giai đoạn xét xử vụ án hình sự(*)</a></h5>
                                            <!-- // title_small_post -->
                                        </div>
                                        <!-- // small-post-content -->
                                    </li>
                                    <!-- // small_post -->
                                </ul>  
                            </div>

                                                        <!-- small-list-post -->
                            <div class="small-list-post col-lg-6 col-md-6 col-sm-6 col-xs-12  mr-bot20">
                                <ul>
                                    <li class="small-post clearfix">
                                        <!-- small_post -->
                                                                                <div class="img-small-post">
                                            <a href="https://nhacly.com/thu-viec-la-gi-1654045114/">
                                                                                                    <img src="https://nhacly.com/wp-content/uploads/2022/06/tong-hop-400x300-1-150x150.png" alt="Quy định chung về thử việc theo Bộ luật lao động">
                                                                                            </a>
                                            <!-- img-small-post -->
                                        </div>
                                        <!-- // img-small-post -->
                                                                                <div class="small-post-content">
                                            <div class="mg-blog-category"> 
                                                <a class="newsup-categories category-color-1" href="https://nhacly.com/category/thuat-ngu-doi-thuong/" alt="View all posts in Thuật ngữ đời thường"> 
                                 Thuật ngữ đời thường
                             </a>                                            </div>
                                            <!-- small-post-content -->
                                            <h5 class="title"><a href="https://nhacly.com/thu-viec-la-gi-1654045114/">Quy định chung về thử việc theo Bộ luật lao động</a></h5>
                                            <!-- // title_small_post -->
                                        </div>
                                        <!-- // small-post-content -->
                                    </li>
                                    <!-- // small_post -->
                                </ul>  
                            </div>

                                                        <!-- small-list-post -->
                            <div class="small-list-post col-lg-6 col-md-6 col-sm-6 col-xs-12  mr-bot20">
                                <ul>
                                    <li class="small-post clearfix">
                                        <!-- small_post -->
                                                                                <div class="img-small-post">
                                            <a href="https://nhacly.com/thu-nghiem-kiem-soat-la-gi-1654045037/">
                                                                                                    <img src="https://nhacly.com/wp-content/uploads/2022/06/photo-1-1566978016688866533407-150x150.jpg" alt="Thử nghiệm kiểm soát (Test of control) là gì? Nội dung của thử nghiệm kiểm soát">
                                                                                            </a>
                                            <!-- img-small-post -->
                                        </div>
                                        <!-- // img-small-post -->
                                                                                <div class="small-post-content">
                                            <div class="mg-blog-category"> 
                                                <a class="newsup-categories category-color-1" href="https://nhacly.com/category/thuat-ngu-doi-thuong/" alt="View all posts in Thuật ngữ đời thường"> 
                                 Thuật ngữ đời thường
                             </a>                                            </div>
                                            <!-- small-post-content -->
                                            <h5 class="title"><a href="https://nhacly.com/thu-nghiem-kiem-soat-la-gi-1654045037/">Thử nghiệm kiểm soát (Test of control) là gì? Nội dung của thử nghiệm kiểm soát</a></h5>
                                            <!-- // title_small_post -->
                                        </div>
                                        <!-- // small-post-content -->
                                    </li>
                                    <!-- // small_post -->
                                </ul>  
                            </div>

                                                        <!-- small-list-post -->
                            <div class="small-list-post col-lg-6 col-md-6 col-sm-6 col-xs-12  mr-bot20">
                                <ul>
                                    <li class="small-post clearfix">
                                        <!-- small_post -->
                                                                                <div class="img-small-post">
                                            <a href="https://nhacly.com/thu-nghiem-co-ban-la-gi-1654044944/">
                                                                                                    <img src="https://nhacly.com/wp-content/uploads/2022/02/cropped-logo-1-150x150.png" alt="Thử Nghiệm Cơ Bản Là Gì ? Nội Dung Của Thử Nghiệm Kiểm Soát Thử Nghiệm Kiểm Soát">
                                                                                            </a>
                                            <!-- img-small-post -->
                                        </div>
                                        <!-- // img-small-post -->
                                                                                <div class="small-post-content">
                                            <div class="mg-blog-category"> 
                                                <a class="newsup-categories category-color-1" href="https://nhacly.com/category/thuat-ngu-doi-thuong/" alt="View all posts in Thuật ngữ đời thường"> 
                                 Thuật ngữ đời thường
                             </a>                                            </div>
                                            <!-- small-post-content -->
                                            <h5 class="title"><a href="https://nhacly.com/thu-nghiem-co-ban-la-gi-1654044944/">Thử Nghiệm Cơ Bản Là Gì ? Nội Dung Của Thử Nghiệm Kiểm Soát Thử Nghiệm Kiểm Soát</a></h5>
                                            <!-- // title_small_post -->
                                        </div>
                                        <!-- // small-post-content -->
                                    </li>
                                    <!-- // small_post -->
                                </ul>  
                            </div>

                                                        <!-- small-list-post -->
                            <div class="small-list-post col-lg-6 col-md-6 col-sm-6 col-xs-12  mr-bot20">
                                <ul>
                                    <li class="small-post clearfix">
                                        <!-- small_post -->
                                                                                <div class="img-small-post">
                                            <a href="https://nhacly.com/thu-la-gi-1654044869/">
                                                                                                    <img src="https://nhacly.com/wp-content/uploads/2022/02/cropped-logo-1-150x150.png" alt="Tra từ: thử – Từ điển Hán Nôm">
                                                                                            </a>
                                            <!-- img-small-post -->
                                        </div>
                                        <!-- // img-small-post -->
                                                                                <div class="small-post-content">
                                            <div class="mg-blog-category"> 
                                                <a class="newsup-categories category-color-1" href="https://nhacly.com/category/thuat-ngu-doi-thuong/" alt="View all posts in Thuật ngữ đời thường"> 
                                 Thuật ngữ đời thường
                             </a>                                            </div>
                                            <!-- small-post-content -->
                                            <h5 class="title"><a href="https://nhacly.com/thu-la-gi-1654044869/">Tra từ: thử – Từ điển Hán Nôm</a></h5>
                                            <!-- // title_small_post -->
                                        </div>
                                        <!-- // small-post-content -->
                                    </li>
                                    <!-- // small_post -->
                                </ul>  
                            </div>

                                                        <!-- small-list-post -->
                            <div class="small-list-post col-lg-6 col-md-6 col-sm-6 col-xs-12  mr-bot20">
                                <ul>
                                    <li class="small-post clearfix">
                                        <!-- small_post -->
                                                                                <div class="img-small-post">
                                            <a href="https://nhacly.com/thuc-an-la-gi-1654044770/">
                                                                                                    <img src="https://nhacly.com/wp-content/uploads/2022/06/14-800x500-6-150x150.jpg" alt="Thực phẩm là gì? Phân loại và tổng hợp các nhóm thực phẩm giàu dinh dưỡng">
                                                                                            </a>
                                            <!-- img-small-post -->
                                        </div>
                                        <!-- // img-small-post -->
                                                                                <div class="small-post-content">
                                            <div class="mg-blog-category"> 
                                                <a class="newsup-categories category-color-1" href="https://nhacly.com/category/thuat-ngu-doi-thuong/" alt="View all posts in Thuật ngữ đời thường"> 
                                 Thuật ngữ đời thường
                             </a>                                            </div>
                                            <!-- small-post-content -->
                                            <h5 class="title"><a href="https://nhacly.com/thuc-an-la-gi-1654044770/">Thực phẩm là gì? Phân loại và tổng hợp các nhóm thực phẩm giàu dinh dưỡng</a></h5>
                                            <!-- // title_small_post -->
                                        </div>
                                        <!-- // small-post-content -->
                                    </li>
                                    <!-- // small_post -->
                                </ul>  
                            </div>

                                                        <!-- small-list-post -->
                            <div class="small-list-post col-lg-6 col-md-6 col-sm-6 col-xs-12  mr-bot20">
                                <ul>
                                    <li class="small-post clearfix">
                                        <!-- small_post -->
                                                                                <div class="img-small-post">
                                            <a href="https://nhacly.com/thu-tu-tu-dien-la-gi-1654044593/">
                                                                                                    <img src="https://nhacly.com/wp-content/uploads/2022/02/cropped-logo-1-150x150.png" alt="Thứ tự từ điển – VNOJ: VNOI Online Judge">
                                                                                            </a>
                                            <!-- img-small-post -->
                                        </div>
                                        <!-- // img-small-post -->
                                                                                <div class="small-post-content">
                                            <div class="mg-blog-category"> 
                                                <a class="newsup-categories category-color-1" href="https://nhacly.com/category/thuat-ngu-doi-thuong/" alt="View all posts in Thuật ngữ đời thường"> 
                                 Thuật ngữ đời thường
                             </a>                                            </div>
                                            <!-- small-post-content -->
                                            <h5 class="title"><a href="https://nhacly.com/thu-tu-tu-dien-la-gi-1654044593/">Thứ tự từ điển – VNOJ: VNOI Online Judge</a></h5>
                                            <!-- // title_small_post -->
                                        </div>
                                        <!-- // small-post-content -->
                                    </li>
                                    <!-- // small_post -->
                                </ul>  
                            </div>

                                                        <!-- small-list-post -->
                            <div class="small-list-post col-lg-6 col-md-6 col-sm-6 col-xs-12  mr-bot20">
                                <ul>
                                    <li class="small-post clearfix">
                                        <!-- small_post -->
                                                                                <div class="img-small-post">
                                            <a href="https://nhacly.com/thuy-tang-la-gi-1654044335/">
                                                                                                    <img src="https://nhacly.com/wp-content/uploads/2022/06/Anh2-tuc-le-thuy-tang-150x150.jpg" alt="Thủy táng là gì? – Tang Lễ Thủ Đô || Dịch Vụ Tang Lễ Trọn Gói Tại Hà Nội Và Các Quận">
                                                                                            </a>
                                            <!-- img-small-post -->
                                        </div>
                                        <!-- // img-small-post -->
                                                                                <div class="small-post-content">
                                            <div class="mg-blog-category"> 
                                                <a class="newsup-categories category-color-1" href="https://nhacly.com/category/thuat-ngu-doi-thuong/" alt="View all posts in Thuật ngữ đời thường"> 
                                 Thuật ngữ đời thường
                             </a>                                            </div>
                                            <!-- small-post-content -->
                                            <h5 class="title"><a href="https://nhacly.com/thuy-tang-la-gi-1654044335/">Thủy táng là gì? – Tang Lễ Thủ Đô || Dịch Vụ Tang Lễ Trọn Gói Tại Hà Nội Và Các Quận</a></h5>
                                            <!-- // title_small_post -->
                                        </div>
                                        <!-- // small-post-content -->
                                    </li>
                                    <!-- // small_post -->
                                </ul>  
                            </div>

                                                        <!-- small-list-post -->
                            <div class="small-list-post col-lg-6 col-md-6 col-sm-6 col-xs-12  mr-bot20">
                                <ul>
                                    <li class="small-post clearfix">
                                        <!-- small_post -->
                                                                                <div class="img-small-post">
                                            <a href="https://nhacly.com/thuy-cung-tieng-anh-la-gi-1654044163/">
                                                                                                    <img src="https://nhacly.com/wp-content/uploads/2022/02/cropped-logo-1-150x150.png" alt="thủy cung trong tiếng Tiếng Anh – Tiếng Việt-Tiếng Anh | Glosbe">
                                                                                            </a>
                                            <!-- img-small-post -->
                                        </div>
                                        <!-- // img-small-post -->
                                                                                <div class="small-post-content">
                                            <div class="mg-blog-category"> 
                                                <a class="newsup-categories category-color-1" href="https://nhacly.com/category/thuat-ngu-doi-thuong/" alt="View all posts in Thuật ngữ đời thường"> 
                                 Thuật ngữ đời thường
                             </a>                                            </div>
                                            <!-- small-post-content -->
                                            <h5 class="title"><a href="https://nhacly.com/thuy-cung-tieng-anh-la-gi-1654044163/">thủy cung trong tiếng Tiếng Anh – Tiếng Việt-Tiếng Anh | Glosbe</a></h5>
                                            <!-- // title_small_post -->
                                        </div>
                                        <!-- // small-post-content -->
                                    </li>
                                    <!-- // small_post -->
                                </ul>  
                            </div>

                                                        <!-- small-list-post -->
                            <div class="small-list-post col-lg-6 col-md-6 col-sm-6 col-xs-12  mr-bot20">
                                <ul>
                                    <li class="small-post clearfix">
                                        <!-- small_post -->
                                                                                <div class="img-small-post">
                                            <a href="https://nhacly.com/thu-do-cua-myanmar-la-gi-1654043902/">
                                                                                                    <img src="https://nhacly.com/wp-content/uploads/2022/06/myan-3456-1614051942-150x150.jpg" alt="Thủ đô kỳ lạ nhất thế giới của Myanmar">
                                                                                            </a>
                                            <!-- img-small-post -->
                                        </div>
                                        <!-- // img-small-post -->
                                                                                <div class="small-post-content">
                                            <div class="mg-blog-category"> 
                                                <a class="newsup-categories category-color-1" href="https://nhacly.com/category/thuat-ngu-doi-thuong/" alt="View all posts in Thuật ngữ đời thường"> 
                                 Thuật ngữ đời thường
                             </a>                                            </div>
                                            <!-- small-post-content -->
                                            <h5 class="title"><a href="https://nhacly.com/thu-do-cua-myanmar-la-gi-1654043902/">Thủ đô kỳ lạ nhất thế giới của Myanmar</a></h5>
                                            <!-- // title_small_post -->
                                        </div>
                                        <!-- // small-post-content -->
                                    </li>
                                    <!-- // small_post -->
                                </ul>  
                            </div>

                                                        <!-- small-list-post -->
                            <div class="small-list-post col-lg-6 col-md-6 col-sm-6 col-xs-12  mr-bot20">
                                <ul>
                                    <li class="small-post clearfix">
                                        <!-- small_post -->
                                                                                <div class="img-small-post">
                                            <a href="https://nhacly.com/thu-do-cua-canada-la-gi-1654043819/">
                                                                                                    <img src="https://nhacly.com/wp-content/uploads/2022/06/thu-do-cua-canada-ten-la-gi-3-150x150.jpg" alt="Thủ đô của Canada tên là gì? Những điều cần biết về thủ đô Canada">
                                                                                            </a>
                                            <!-- img-small-post -->
                                        </div>
                                        <!-- // img-small-post -->
                                                                                <div class="small-post-content">
                                            <div class="mg-blog-category"> 
                                                <a class="newsup-categories category-color-1" href="https://nhacly.com/category/thuat-ngu-doi-thuong/" alt="View all posts in Thuật ngữ đời thường"> 
                                 Thuật ngữ đời thường
                             </a>                                            </div>
                                            <!-- small-post-content -->
                                            <h5 class="title"><a href="https://nhacly.com/thu-do-cua-canada-la-gi-1654043819/">Thủ đô của Canada tên là gì? Những điều cần biết về thủ đô Canada</a></h5>
                                            <!-- // title_small_post -->
                                        </div>
                                        <!-- // small-post-content -->
                                    </li>
                                    <!-- // small_post -->
                                </ul>  
                            </div>

                                                        <!-- small-list-post -->
                            <div class="small-list-post col-lg-6 col-md-6 col-sm-6 col-xs-12  mr-bot20">
                                <ul>
                                    <li class="small-post clearfix">
                                        <!-- small_post -->
                                                                                <div class="img-small-post">
                                            <a href="https://nhacly.com/thu-thuat-xoan-polyp-co-tu-cung-la-gi-1654043557/">
                                                                                                    <img src="https://nhacly.com/wp-content/uploads/2022/06/xoan-co-tu-cung-so-huu-nhieu-uu-diem-tuyet-voi-150x150.jpg" alt="Xoắn polyp cổ tử cung là gì và có nguy hiểm không? | TCI Hospital">
                                                                                            </a>
                                            <!-- img-small-post -->
                                        </div>
                                        <!-- // img-small-post -->
                                                                                <div class="small-post-content">
                                            <div class="mg-blog-category"> 
                                                <a class="newsup-categories category-color-1" href="https://nhacly.com/category/thuat-ngu-doi-thuong/" alt="View all posts in Thuật ngữ đời thường"> 
                                 Thuật ngữ đời thường
                             </a>                                            </div>
                                            <!-- small-post-content -->
                                            <h5 class="title"><a href="https://nhacly.com/thu-thuat-xoan-polyp-co-tu-cung-la-gi-1654043557/">Xoắn polyp cổ tử cung là gì và có nguy hiểm không? | TCI Hospital</a></h5>
                                            <!-- // title_small_post -->
                                        </div>
                                        <!-- // small-post-content -->
                                    </li>
                                    <!-- // small_post -->
                                </ul>  
                            </div>

                                        </div>
        </div>

            </div>	</div>
</aside><!-- #secondary -->
            </aside>
          <!--/col-md-3-->
      <!--/sidebar-->
          </div>
  </div>
</main>
  <div class="container-fluid mr-bot40 mg-posts-sec-inner">
        <div class="missed-inner">
        <div class="row">
                        <div class="col-md-12">
                <div class="mg-sec-title">
                    <!-- mg-sec-title -->
                    <h4>You missed</h4>
                </div>
            </div>
                            <!--col-md-3-->
                <div class="col-md-3 col-sm-6 pulse animated">
               <div class="mg-blog-post-3 minh back-img" 
                                                        style="background-image: url('https://nhacly.com/wp-content/uploads/2022/03/imager_1_5678_700.jpg');" >
                            <a class="link-div" href="https://nhacly.com/cach-doc-tiet-tau-la-gi-1647161652/"></a>
                    <div class="mg-blog-inner">
                      <div class="mg-blog-category">
                      <a class="newsup-categories category-color-1" href="https://nhacly.com/category/kien-thuc-am-nhac/" alt="View all posts in Kiến thức âm nhạc"> 
                                 Kiến thức âm nhạc
                             </a>                      </div>
                      <h4 class="title"> <a href="https://nhacly.com/cach-doc-tiet-tau-la-gi-1647161652/" title="Permalink to: Thi Thẩm Âm Tiết Tấu Là Gì ? Hướng Dẫn Cách Đọc Tiết Thi Thẩm Âm Tiết Tấu Khối M"> Thi Thẩm Âm Tiết Tấu Là Gì ? Hướng Dẫn Cách Đọc Tiết Thi Thẩm Âm Tiết Tấu Khối M</a> </h4>
                          <div class="mg-blog-meta">
        <span class="mg-blog-date"><i class="fas fa-clock"></i>
         <a href="https://nhacly.com/2023/01/">
         Th1 3, 2023</a></span>
         <a class="auth" href="https://nhacly.com/author/adnhacly/"><i class="fas fa-user-circle"></i> 
        adnhacly</a>
         
    </div>
                        </div>
                </div>
            </div>
            <!--/col-md-3-->
                         <!--col-md-3-->
                <div class="col-md-3 col-sm-6 pulse animated">
               <div class="mg-blog-post-3 minh back-img" 
                                                        style="background-image: url('https://nhacly.com/wp-content/uploads/2022/04/imager_4_5954_700.jpg');" >
                            <a class="link-div" href="https://nhacly.com/bai-hat-ve-tuoi-hoc-tro-tieng-anh-1650005198/"></a>
                    <div class="mg-blog-inner">
                      <div class="mg-blog-category">
                      <a class="newsup-categories category-color-1" href="https://nhacly.com/category/bai-hat-tuoi-hoc-tro/" alt="View all posts in Bài hát tuổi học trò"> 
                                 Bài hát tuổi học trò
                             </a>                      </div>
                      <h4 class="title"> <a href="https://nhacly.com/bai-hat-ve-tuoi-hoc-tro-tieng-anh-1650005198/" title="Permalink to: Những Bài Hát Tiếng Anh Về Tuổi Học Trò, Thầy Cô Và Bạn Bè, 10 Ca Khúc Quốc Tế Ấn Tượng Với Tuổi Học Trò"> Những Bài Hát Tiếng Anh Về Tuổi Học Trò, Thầy Cô Và Bạn Bè, 10 Ca Khúc Quốc Tế Ấn Tượng Với Tuổi Học Trò</a> </h4>
                          <div class="mg-blog-meta">
        <span class="mg-blog-date"><i class="fas fa-clock"></i>
         <a href="https://nhacly.com/2022/11/">
         Th11 5, 2022</a></span>
         <a class="auth" href="https://nhacly.com/author/adnhacly/"><i class="fas fa-user-circle"></i> 
        adnhacly</a>
         
    </div>
                        </div>
                </div>
            </div>
            <!--/col-md-3-->
                         <!--col-md-3-->
                <div class="col-md-3 col-sm-6 pulse animated">
               <div class="mg-blog-post-3 minh back-img" 
                                                        style="background-image: url('https://nhacly.com/wp-content/uploads/2022/03/hinh-hop-chu-nhat.jpg');" >
                            <a class="link-div" href="https://nhacly.com/tinh-the-tich-hinh-hop-chu-nhat-1647584408/"></a>
                    <div class="mg-blog-inner">
                      <div class="mg-blog-category">
                      <a class="newsup-categories category-color-1" href="https://nhacly.com/category/tan-man/" alt="View all posts in tản mạn"> 
                                 tản mạn
                             </a>                      </div>
                      <h4 class="title"> <a href="https://nhacly.com/tinh-the-tich-hinh-hop-chu-nhat-1647584408/" title="Permalink to: Công Thức Tính Thể Tích Hình Hộp Chữ Nhật"> Công Thức Tính Thể Tích Hình Hộp Chữ Nhật</a> </h4>
                          <div class="mg-blog-meta">
        <span class="mg-blog-date"><i class="fas fa-clock"></i>
         <a href="https://nhacly.com/2022/11/">
         Th11 4, 2022</a></span>
         <a class="auth" href="https://nhacly.com/author/adnhacly/"><i class="fas fa-user-circle"></i> 
        adnhacly</a>
         
    </div>
                        </div>
                </div>
            </div>
            <!--/col-md-3-->
                         <!--col-md-3-->
                <div class="col-md-3 col-sm-6 pulse animated">
               <div class="mg-blog-post-3 minh back-img" 
                                                        style="background-image: url('https://nhacly.com/wp-content/uploads/2022/03/giai-bai-61-trang-125-sgk-toan-lop-6-tap-1.jpg');" >
                            <a class="link-div" href="https://nhacly.com/tinh-chat-trung-diem-cua-doan-thang-1647951098/"></a>
                    <div class="mg-blog-inner">
                      <div class="mg-blog-category">
                      <a class="newsup-categories category-color-1" href="https://nhacly.com/category/tan-man/" alt="View all posts in tản mạn"> 
                                 tản mạn
                             </a>                      </div>
                      <h4 class="title"> <a href="https://nhacly.com/tinh-chat-trung-diem-cua-doan-thang-1647951098/" title="Permalink to: Tính chất Trung điểm của đoạn thẳng"> Tính chất Trung điểm của đoạn thẳng</a> </h4>
                          <div class="mg-blog-meta">
        <span class="mg-blog-date"><i class="fas fa-clock"></i>
         <a href="https://nhacly.com/2022/11/">
         Th11 4, 2022</a></span>
         <a class="auth" href="https://nhacly.com/author/adnhacly/"><i class="fas fa-user-circle"></i> 
        adnhacly</a>
         
    </div>
                        </div>
                </div>
            </div>
            <!--/col-md-3-->
                     

                </div>
            </div>
        </div>
<!--==================== FOOTER AREA ====================-->
        <footer> 
            <div class="overlay" style="background-color: ;">
                <!--Start mg-footer-widget-area-->
                                 <!--End mg-footer-widget-area-->
                <!--Start mg-footer-widget-area-->
                <div class="mg-footer-bottom-area">
                    <div class="container-fluid">
                        <div class="divide-line"></div>
                        <div class="row align-items-center">
                            <!--col-md-4-->
                            <div class="col-md-6">
                                                             <div class="site-branding-text">
                              <h1 class="site-title"> <a href="https://nhacly.com/" rel="home">Nhạc lý căn bản - nhacly.com</a></h1>
                              <p class="site-description">Blog học nhạc Online</p>
                              </div>
                                                          </div>

                             
                            <div class="col-md-6 text-right text-xs">
                                
                            <ul class="mg-social">
                                    
                                                                         
                                                                        
                                                                 </ul>


                            </div>
                            <!--/col-md-4-->  
                             
                        </div>
                        <!--/row-->
                    </div>
                    <!--/container-->
                </div>
                <!--End mg-footer-widget-area-->

                <div class="mg-footer-copyright">
                    <div class="container-fluid">
                        <div class="row">
                                                      <div class="col-md-6 text-xs">
                                                            <p>
                                <a href="https://wordpress.org/">
								Proudly powered by WordPress								</a>
								<span class="sep"> | </span>
								Theme: Newsup by <a href="https://themeansar.com/" rel="designer">Themeansar</a>.								</p>
                            </div>


                                                        <div class="col-md-6 text-right text-xs">
                                <ul class="info-right"><li class="nav-item menu-item "><a class="nav-link " href="https://nhacly.com/" title="Home">Home</a></li><li class="nav-item menu-item page_item dropdown page-item-3"><a class="nav-link" href="https://nhacly.com/privacy-policy/">Chính sách bảo mật nhacly.com</a></li><li class="nav-item menu-item page_item dropdown page-item-66418"><a class="nav-link" href="https://nhacly.com/cua-hang/">Cửa hàng</a></li><li class="nav-item menu-item page_item dropdown page-item-66419"><a class="nav-link" href="https://nhacly.com/gio-hang/">Giỏ hàng</a></li><li class="nav-item menu-item page_item dropdown page-item-15846"><a class="nav-link" href="https://nhacly.com/kien-thuc-nhac-ly-co-ban/">Kiến thức nhạc lý cơ bản</a></li><li class="nav-item menu-item page_item dropdown page-item-2"><a class="nav-link" href="https://nhacly.com/lien-he/">Liên hệ</a></li><li class="nav-item menu-item page_item dropdown page-item-66129"><a class="nav-link" href="https://nhacly.com/nhac-bolero-2/">Nhạc bolero – những ca khúc bolero tuyển chọn hay nhất gần 1 thế kỷ qua</a></li><li class="nav-item menu-item page_item dropdown page-item-66133"><a class="nav-link" href="https://nhacly.com/nhac-remix-cac-bai-nhac-remix-hay-cuc-dinh/">Nhạc remix – các bài nhạc remix hay cực đỉnh</a></li><li class="nav-item menu-item page_item dropdown page-item-66127"><a class="nav-link" href="https://nhacly.com/nhac-thieu-nhi-99-bai-hat-thieu-nhi-tu-1-9-tuoi-phu-huynh-nen-tap-cho-be/">Nhạc thiếu nhi – 99 bài hát thiếu nhi từ 1-9 tuổi, phụ huynh nên tập cho bé</a></li><li class="nav-item menu-item page_item dropdown page-item-66135"><a class="nav-link" href="https://nhacly.com/nhac-tik-tok-nhung-doan-nhac-nen-de-lam-video-tiktok-cuc-hay/">Nhạc tik tok – những đoạn nhạc nền để làm video tiktok cực hay</a></li><li class="nav-item menu-item page_item dropdown page-item-66131"><a class="nav-link" href="https://nhacly.com/nhac-tru-tinh-tuyen-tap-nhung-ca-khuc-tru-tinh-vuot-thoi-gian/">Nhạc trữ tình – tuyển tập những ca khúc trữ tình vượt thời gian</a></li><li class="nav-item menu-item page_item dropdown page-item-66421"><a class="nav-link" href="https://nhacly.com/tai-khoan-2/">Tài khoản</a></li><li class="nav-item menu-item page_item dropdown page-item-66420"><a class="nav-link" href="https://nhacly.com/thanh-toan/">Thanh toán</a></li><li class="nav-item menu-item page_item dropdown page-item-15831"><a class="nav-link" href="https://nhacly.com/dieu-khoan-su-dung/">Điều khoản sử dụng dịch vụ</a></li></ul>
                            </div>
                                                  </div>
                    </div>
                </div>
            </div>
            <!--/overlay-->
        </footer>
        <!--/footer-->
    </div>
  </div>
    <!--/wrapper-->
    <!--Scroll To Top-->
    <a href="#" class="ta_upscr bounceInup animated"><i class="fas fa-angle-up"></i></a>
    <!--/Scroll To Top-->
<!-- /Scroll To Top -->
		<div id="amp-mobile-version-switcher" hidden>
			<a rel="" href="https://nhacly.com/electron-js-la-gi-1652197389/amp/">
				Go to mobile version			</a>
		</div>

					<script type="text/javascript">
		(function () {
			var c = document.body.className;
			c = c.replace(/woocommerce-no-js/, 'woocommerce-js');
			document.body.className = c;
		})();
	</script>
	
	<script type="text/javascript">
		window.WPCOM_sharing_counts = {"https:\/\/nhacly.com\/electron-js-la-gi-1652197389\/":40514};
	</script>
				<script type="text/javascript" id="toc-front-js-extra">
/* <![CDATA[ */
var tocplus = {"visibility_show":"hi\u1ec3n th\u1ecb","visibility_hide":"\u1ea9n \u0111i","width":"Auto"};
/* ]]> */
</script>
<script type="text/javascript" src="https://nhacly.com/wp-content/plugins/table-of-contents-plus/front.min.js?ver=2106" id="toc-front-js"></script>
<script type="text/javascript" src="https://c0.wp.com/p/woocommerce/7.5.1/assets/js/jquery-blockui/jquery.blockUI.min.js" id="jquery-blockui-js"></script>
<script type="text/javascript" id="wc-add-to-cart-js-extra">
/* <![CDATA[ */
var wc_add_to_cart_params = {"ajax_url":"\/wp-admin\/admin-ajax.php","wc_ajax_url":"\/?wc-ajax=%%endpoint%%","i18n_view_cart":"View cart","cart_url":"https:\/\/nhacly.com\/gio-hang\/","is_cart":"","cart_redirect_after_add":"no"};
/* ]]> */
</script>
<script type="text/javascript" src="https://c0.wp.com/p/woocommerce/7.5.1/assets/js/frontend/add-to-cart.min.js" id="wc-add-to-cart-js"></script>
<script type="text/javascript" src="https://c0.wp.com/p/woocommerce/7.5.1/assets/js/js-cookie/js.cookie.min.js" id="js-cookie-js"></script>
<script type="text/javascript" id="woocommerce-js-extra">
/* <![CDATA[ */
var woocommerce_params = {"ajax_url":"\/wp-admin\/admin-ajax.php","wc_ajax_url":"\/?wc-ajax=%%endpoint%%"};
/* ]]> */
</script>
<script type="text/javascript" src="https://c0.wp.com/p/woocommerce/7.5.1/assets/js/frontend/woocommerce.min.js" id="woocommerce-js"></script>
<script type="text/javascript" id="wc-cart-fragments-js-extra">
/* <![CDATA[ */
var wc_cart_fragments_params = {"ajax_url":"\/wp-admin\/admin-ajax.php","wc_ajax_url":"\/?wc-ajax=%%endpoint%%","cart_hash_key":"wc_cart_hash_961fa924ec496a2926ecd10cbf1b061b","fragment_name":"wc_fragments_961fa924ec496a2926ecd10cbf1b061b","request_timeout":"5000"};
/* ]]> */
</script>
<script type="text/javascript" src="https://c0.wp.com/p/woocommerce/7.5.1/assets/js/frontend/cart-fragments.min.js" id="wc-cart-fragments-js"></script>
<script type="text/javascript" id="wc-cart-fragments-js-after">
/* <![CDATA[ */
		jQuery( 'body' ).bind( 'wc_fragments_refreshed', function() {
			var jetpackLazyImagesLoadEvent;
			try {
				jetpackLazyImagesLoadEvent = new Event( 'jetpack-lazy-images-load', {
					bubbles: true,
					cancelable: true
				} );
			} catch ( e ) {
				jetpackLazyImagesLoadEvent = document.createEvent( 'Event' )
				jetpackLazyImagesLoadEvent.initEvent( 'jetpack-lazy-images-load', true, true );
			}
			jQuery( 'body' ).get( 0 ).dispatchEvent( jetpackLazyImagesLoadEvent );
		} );
		
/* ]]> */
</script>
<script type="text/javascript" src="https://c0.wp.com/c/6.7.1/wp-includes/js/comment-reply.min.js" id="comment-reply-js" async="async" data-wp-strategy="async"></script>
<script type="text/javascript" src="https://cdn.onesignal.com/sdks/OneSignalSDK.js?ver=6.7.1' async='async" id="remote_sdk-js"></script>
<script type="text/javascript" src="https://nhacly.com/wp-content/themes/newsup/js/custom.js?ver=6.7.1" id="newsup-custom-js"></script>
<script type="text/javascript" src="https://nhacly.com/wp-content/themes/newsup/js/custom-time.js?ver=6.7.1" id="newsup-custom-time-js"></script>
<script type="text/javascript" id="sharing-js-js-extra">
/* <![CDATA[ */
var sharing_js_options = {"lang":"en","counts":"1","is_stats_active":"1"};
/* ]]> */
</script>
<script type="text/javascript" src="https://c0.wp.com/p/jetpack/11.5.3/_inc/build/sharedaddy/sharing.min.js" id="sharing-js-js"></script>
<script type="text/javascript" id="sharing-js-js-after">
/* <![CDATA[ */
var windowOpen;
			( function () {
				function matches( el, sel ) {
					return !! (
						el.matches && el.matches( sel ) ||
						el.msMatchesSelector && el.msMatchesSelector( sel )
					);
				}

				document.body.addEventListener( 'click', function ( event ) {
					if ( ! event.target ) {
						return;
					}

					var el;
					if ( matches( event.target, 'a.share-twitter' ) ) {
						el = event.target;
					} else if ( event.target.parentNode && matches( event.target.parentNode, 'a.share-twitter' ) ) {
						el = event.target.parentNode;
					}

					if ( el ) {
						event.preventDefault();

						// If there's another sharing window open, close it.
						if ( typeof windowOpen !== 'undefined' ) {
							windowOpen.close();
						}
						windowOpen = window.open( el.getAttribute( 'href' ), 'wpcomtwitter', 'menubar=1,resizable=1,width=600,height=350' );
						return false;
					}
				} );
			} )();
var windowOpen;
			( function () {
				function matches( el, sel ) {
					return !! (
						el.matches && el.matches( sel ) ||
						el.msMatchesSelector && el.msMatchesSelector( sel )
					);
				}

				document.body.addEventListener( 'click', function ( event ) {
					if ( ! event.target ) {
						return;
					}

					var el;
					if ( matches( event.target, 'a.share-facebook' ) ) {
						el = event.target;
					} else if ( event.target.parentNode && matches( event.target.parentNode, 'a.share-facebook' ) ) {
						el = event.target.parentNode;
					}

					if ( el ) {
						event.preventDefault();

						// If there's another sharing window open, close it.
						if ( typeof windowOpen !== 'undefined' ) {
							windowOpen.close();
						}
						windowOpen = window.open( el.getAttribute( 'href' ), 'wpcomfacebook', 'menubar=1,resizable=1,width=600,height=400' );
						return false;
					}
				} );
			} )();
/* ]]> */
</script>
	<script>
	/(trident|msie)/i.test(navigator.userAgent)&&document.getElementById&&window.addEventListener&&window.addEventListener("hashchange",function(){var t,e=location.hash.substring(1);/^[A-z0-9_-]+$/.test(e)&&(t=document.getElementById(e))&&(/^(?:a|select|input|button|textarea)$/i.test(t.tagName)||(t.tabIndex=-1),t.focus())},!1);
	</script>
		<script src='https://stats.wp.com/e-202448.js' defer></script>
	<script>
		_stq = window._stq || [];
		_stq.push([ 'view', {v:'ext',blog:'203151506',post:'40514',tz:'7',srv:'nhacly.com',j:'1:11.5.3'} ]);
		_stq.push([ 'clickTrackerInit', '203151506', '40514' ]);
	</script></body>
</html>