{"id":405971,"date":"2025-12-23T18:16:43","date_gmt":"2025-12-23T07:16:43","guid":{"rendered":"https:\/\/augstudy.com\/?p=405971"},"modified":"2025-12-24T15:36:21","modified_gmt":"2025-12-24T04:36:21","slug":"signing-mou-university-of-danang","status":"publish","type":"post","link":"https:\/\/augstudy.com\/vi\/signing-mou-university-of-danang\/","title":{"rendered":"L\u1ec4 K\u00dd K\u1ebeT TH\u1eceA THU\u1eacN H\u1ee2P T\u00c1C (MOU) GI\u1eeeA AUG GLOBAL NETWORK V\u00c0 \u0110\u1ea0I H\u1eccC \u0110\u00c0 N\u1eb4NG: KI\u1ebeN T\u1ea0O GI\u00c1 TR\u1eca B\u1ec0N V\u1eeeNG CHO TH\u1ebe H\u1ec6 T\u01af\u01a0NG LAI"},"content":{"rendered":"<div class=\"vc_row wpb_row vc_row-fluid\"><div class=\"wpb_column vc_column_container vc_col-sm-8\"><div class=\"vc_column-inner \"><div class=\"wpb_wrapper\">\n\t<div class=\"wpb_text_column wpb_content_element  vc_custom_1760419995044\">\n\t\t<div class=\"wpb_wrapper\">\n\t\t\t<!DOCTYPE html>\r\n<html lang=\"en\">\r\n<head>\r\n<meta charset=\"UTF-8\" \/>\r\n<meta name=\"viewport\" content=\"width=device-width, initial-scale=1.0\" \/>\r\n<title>Article Meta<\/title>\r\n<style>\r\n  body {\r\n    font-family: \"Roboto\", Arial, sans-serif;\r\n    background: #fafafa;\r\n    color: #333;\r\n    margin: 0;\r\n  }\r\n\r\n  #article-info {\r\n    width: 100%;\r\n  }\r\n\r\n  \/* 3-column flex layout *\/\r\n  .article-info-flex {\r\n    display: flex;\r\n    align-items: center;\r\n    justify-content: space-between;\r\n    gap: 12px;\r\n    flex-wrap: wrap;\r\n  }\r\n\r\n  .author-section {\r\n    display: flex;\r\n    align-items: center;\r\n    gap: 10px;\r\n    min-width: 120px;\r\n  }\r\n\r\n  .author-avatar {\r\n    width: 40px;\r\n    height: 40px;\r\n    border-radius: 50%;\r\n    object-fit: cover;\r\n    flex-shrink: 0;\r\n  }\r\n\r\n  .author-name {\r\n    font-weight: 600;\r\n    font-size: 15px;\r\n    color: #000;\r\n  }\r\n\r\n  .meta-text {\r\n    font-size: 14px;\r\n    color: #777;\r\n    min-width: 80px;\r\n    text-align: center;\r\n  }\r\n\r\n  .loading,\r\n  .error {\r\n    font-size: 14px;\r\n    color: #666;\r\n    padding: 10px;\r\n    text-align: center;\r\n  }\r\n\r\n  .meta-divider {\r\n    border: none;\r\n    border-bottom: 1px solid #ddd;\r\n  }\r\n\r\n  @media (max-width: 600px) {\r\n    .article-info-flex {\r\n      flex-direction: column;\r\n      align-items: flex-start;\r\n      gap: 8px;\r\n    }\r\n    .meta-text {\r\n      text-align: left;\r\n      font-size: 13px;\r\n    }\r\n  }\r\n<\/style>\r\n<\/head>\r\n<body data-rsssl=1>\r\n\r\n<div id=\"article-info\" class=\"loading\">Loading article details...<\/div>\r\n\r\n<script>\r\ndocument.addEventListener('DOMContentLoaded', async () => {\r\n  const container = document.getElementById('article-info');\r\n  if (!container) return;\r\n\r\n  const slug = window.location.pathname.split('\/').filter(Boolean).pop();\r\n  if (!slug) {\r\n    container.textContent = 'No article slug detected in URL.';\r\n    return;\r\n  }\r\n\r\n  const cacheKey = `article_meta_${slug}`;\r\n  const cached = sessionStorage.getItem(cacheKey);\r\n  if (cached) {\r\n    container.innerHTML = cached;\r\n    return;\r\n  }\r\n\r\n  try {\r\n    const res = await fetch(`${window.location.origin}\/wp-json\/wp\/v2\/posts?slug=${slug}&_embed`);\r\n    const posts = await res.json();\r\n    if (!posts.length) {\r\n      container.textContent = 'No article found for this slug.';\r\n      return;\r\n    }\r\n\r\n    const post = posts[0];\r\n\r\n    \/\/ --- Author info with fallback ---\r\n    let authorName = 'Unknown Author';\r\n    let authorImg = '';\r\n\r\n    if (post._embedded?.author?.[0]) {\r\n      authorName = post._embedded.author[0].name || authorName;\r\n      authorImg = post._embedded.author[0].avatar_urls?.['96'] || '';\r\n    } else if (post.author) {\r\n      try {\r\n        const authorRes = await fetch(`${window.location.origin}\/wp-json\/wp\/v2\/users\/${post.author}`);\r\n        if (authorRes.ok) {\r\n          const authorData = await authorRes.json();\r\n          authorName = authorData.name || authorName;\r\n          authorImg = authorData.avatar_urls?.['96'] || '';\r\n        }\r\n      } catch(e) {\r\n        console.warn('Fallback author fetch failed:', e);\r\n      }\r\n    }\r\n\r\n    \/\/ --- Date posted ---\r\n    const date = new Date(post.date).toLocaleDateString('en-US', {\r\n      month: 'short',\r\n      day: 'numeric',\r\n      year: 'numeric'\r\n    });\r\n\r\n    \/\/ --- Reading time ---\r\n    const text = post.content?.rendered?.replace(\/<[^>]*>\/g, ' ')?.slice(0,20000) || '';\r\n    const wordCount = text.split(\/\\s+\/).filter(Boolean).length;\r\n    const readingTime = Math.ceil(wordCount \/ 200);\r\n\r\n    const html = `\r\n      <div class=\"article-info-flex\">\r\n        <div class=\"author-section\">\r\n          ${authorImg ? `<img decoding=\"async\" src=\"${authorImg}\" fetchpriority=\"low\" alt=\"${authorName}\" class=\"author-avatar\">` : ''}\r\n          <div class=\"author-name\">${authorName}<\/div>\r\n        <\/div>\r\n        <div class=\"meta-text\">${date}<\/div>\r\n        <div class=\"meta-text\">${readingTime} min read<\/div>\r\n      <\/div>\r\n      <hr class=\"meta-divider\">\r\n    `;\r\n\r\n    container.innerHTML = html;\r\n    sessionStorage.setItem(cacheKey, html);\r\n\r\n  } catch (error) {\r\n    console.error('Error fetching article info:', error);\r\n    container.textContent = 'Unable to load article details.';\r\n    container.classList.add('error');\r\n  }\r\n});\r\n<\/script>\r\n\r\n<\/body>\r\n<\/html>\r\n\n\n\t\t<\/div>\n\t<\/div>\n\n\t<div class=\"wpb_text_column wpb_content_element \">\n\t\t<div class=\"wpb_wrapper\">\n\t\t\t<p><strong>Ng\u00e0y 15\/12\/2025, T\u1ed5 ch\u1ee9c Gi\u00e1o d\u1ee5c AUG Global Network v\u00e0 \u0110\u1ea1i h\u1ecdc \u0110\u00e0 N\u1eb5ng (\u0110H\u0110N) \u0111\u00e3 ch\u00ednh th\u1ee9c th\u1ef1c hi\u1ec7n nghi th\u1ee9c k\u00fd k\u1ebft Bi\u00ean b\u1ea3n ghi nh\u1edb h\u1ee3p t\u00e1c (MOU) theo h\u00ecnh th\u1ee9c tr\u1ef1c tuy\u1ebfn. S\u1ef1 ki\u1ec7n n\u00e0y \u0111\u00e1nh d\u1ea5u b\u01b0\u1edbc ti\u1ebfn quan tr\u1ecdng trong vi\u1ec7c thi\u1ebft l\u1eadp m\u1ed1i quan h\u1ec7 chi\u1ebfn l\u01b0\u1ee3c nh\u1eb1m th\u00fac \u0111\u1ea9y qu\u1ed1c t\u1ebf h\u00f3a gi\u00e1o d\u1ee5c v\u00e0 m\u1edf r\u1ed9ng c\u01a1 h\u1ed9i ph\u00e1t tri\u1ec3n cho sinh vi\u00ean Vi\u1ec7t Nam.<br \/>\n<\/strong><\/p>\n<p><img loading=\"lazy\" decoding=\"async\" class=\"alignnone wp-image-394328 size-full\" src=\"\/aug-website-files\/wp-content\/uploads\/2025\/12\/aug_vnnews_signing_mou_with_university_of_danang_01.jpg\" alt=\"Signing MOU Between AUG and The University of Danang\" width=\"620\" height=\"414\" \/><br \/>\n<em>\u1ea2nh 1: \u00d4ng James Kon \u2013 Gi\u00e1m \u0111\u1ed1c \u0111i\u1ec1u h\u00e0nh to\u00e0n c\u1ea7u T\u1ed5 ch\u1ee9c Gi\u00e1o d\u1ee5c AUG Global Network<\/em><\/p>\n<div style=\"background-color:; height: 20px;\" class=\"nicdark_section\"><\/div>\n<p style=\"text-align: justify;\">Bu\u1ed5i l\u1ec5 c\u00f3 s\u1ef1 ch\u1ee7 tr\u00ec c\u1ee7a <strong>PGS.TS. L\u00ea Th\u00e0nh B\u1eafc<\/strong> \u2013 Ph\u00f3 Gi\u00e1m \u0111\u1ed1c \u0110H\u0110N. V\u1ec1 ph\u00eda AUG Global Network, c\u00f3 s\u1ef1 hi\u1ec7n di\u1ec7n c\u1ee7a <strong>\u00f4ng James Kon<\/strong> \u2013 Gi\u00e1m \u0111\u1ed1c \u0111i\u1ec1u h\u00e0nh to\u00e0n c\u1ea7u, <strong>\u00f4ng Kevin V\u00f5<\/strong> \u2013 Gi\u00e1m \u0111\u1ed1c \u0110i\u1ec1u h\u00e0nh AUG Vi\u1ec7t Nam, c\u00f9ng \u0111\u1ea1i di\u1ec7n l\u00e3nh \u0111\u1ea1o c\u00e1c ban ch\u1ee9c n\u0103ng, c\u00e1c tr\u01b0\u1eddng \u0111\u1ea1i h\u1ecdc th\u00e0nh vi\u00ean v\u00e0 c\u00e1c \u0111\u01a1n v\u1ecb tr\u1ef1c thu\u1ed9c c\u1ee7a c\u1ea3 hai b\u00ean.<\/p>\n<p><img loading=\"lazy\" decoding=\"async\" class=\"alignnone wp-image-394328 size-full\" src=\"\/aug-website-files\/wp-content\/uploads\/2025\/12\/aug_vnnews_signing_mou_with_university_of_danang_02.jpg\" alt=\"Signing MOU Between AUG and The University of Danang\" width=\"620\" height=\"414\" \/><br \/>\n<em>\u1ea2nh 2: Bu\u1ed5i l\u1ec5 k\u00fd k\u1ebft Th\u1ecfa thu\u1eadn h\u1ee3p t\u00e1c (MOU) gi\u1eefa \u0110\u1ea1i h\u1ecdc \u0110\u00e0 N\u1eb5ng v\u00e0 T\u1ed5 ch\u1ee9c Gi\u00e1o d\u1ee5c AUG Global Network, v\u1edbi s\u1ef1 tham gia c\u1ee7a \u0111\u1ea1i di\u1ec7n hai b\u00ean.<\/em><\/p>\n<div style=\"background-color:; height: 20px;\" class=\"nicdark_section\"><\/div>\n<h4><strong>G\u1eafn k\u1ebft gi\u00e1o d\u1ee5c v\u00e0 doanh nghi\u1ec7p: T\u1ea7m nh\u00ecn chi\u1ebfn l\u01b0\u1ee3c<\/strong><\/h4>\n<p style=\"text-align: justify;\">Ph\u00e1t bi\u1ec3u t\u1ea1i bu\u1ed5i l\u1ec5, <strong>PGS.TS. L\u00ea Th\u00e0nh B\u1eafc<\/strong> nh\u1ea5n m\u1ea1nh r\u1eb1ng vi\u1ec7c h\u1ee3p t\u00e1c v\u1edbi m\u1ed9t t\u1ed5 ch\u1ee9c gi\u00e1o d\u1ee5c uy t\u00edn to\u00e0n c\u1ea7u nh\u01b0 AUG l\u00e0 minh ch\u1ee9ng cho \u0111\u1ecbnh h\u01b0\u1edbng chi\u1ebfn l\u01b0\u1ee3c c\u1ee7a \u0110H\u0110N trong vi\u1ec7c g\u1eafn k\u1ebft gi\u1eefa nh\u00e0 tr\u01b0\u1eddng v\u00e0 doanh nghi\u1ec7p. \u0110\u00e2y l\u00e0 ti\u1ec1n \u0111\u1ec1 \u0111\u1ec3 n\u00e2ng cao ch\u1ea5t l\u01b0\u1ee3ng ngu\u1ed3n nh\u00e2n l\u1ef1c, \u0111\u00e1p \u1ee9ng k\u1ef3 v\u1ecdng c\u1ee7a x\u00e3 h\u1ed9i v\u00e0 mang l\u1ea1i cho sinh vi\u00ean ngu\u1ed3n th\u00f4ng tin h\u1eefu \u00edch v\u1ec1 c\u00e1c c\u01a1 h\u1ed9i th\u1ef1c t\u1eadp, du h\u1ecdc, ph\u00e1t tri\u1ec3n chuy\u00ean m\u00f4n, chu\u1ea9n b\u1ecb t\u1ed1t h\u00e0nh trang \u0111\u1ec3 h\u1ed9i nh\u1eadp v\u1edbi th\u1ecb tr\u01b0\u1eddng lao \u0111\u1ed9ng khu v\u1ef1c v\u00e0 qu\u1ed1c t\u1ebf.<\/p>\n<h4><strong>Cam k\u1ebft <em>\u201cCreate Impact Beyond Education\u201d<\/em><\/strong><\/h4>\n<p style=\"text-align: justify;\">\u0110\u1ea1i di\u1ec7n AUG Global Network, <strong>\u00f4ng James Kon<\/strong> b\u00e0y t\u1ecf ni\u1ec1m vinh d\u1ef1 khi \u0111\u01b0\u1ee3c thi\u1ebft l\u1eadp m\u1ed1i quan h\u1ec7 \u0111\u1ed1i t\u00e1c v\u1edbi m\u1ed9t trong nh\u1eefng trung t\u00e2m \u0111\u00e0o t\u1ea1o v\u00e0 nghi\u00ean c\u1ee9u khoa h\u1ecdc h\u00e0ng \u0111\u1ea7u Vi\u1ec7t Nam. Chia s\u1ebb v\u1ec1 s\u1ee9 m\u1ec7nh c\u1ee7a AUG, \u00f4ng cho bi\u1ebft:<\/p>\n<blockquote><p>\n&#8220;Trong su\u1ed1t h\u01a1n 30 n\u0103m qua, AUG \u0111\u00e3 \u0111\u1ed3ng h\u00e0nh c\u00f9ng h\u01a1n 75.000 h\u1ecdc sinh, sinh vi\u00ean tr\u00ean h\u00e0nh tr\u00ecnh v\u01b0\u01a1n ra th\u1ebf gi\u1edbi. S\u1ee9 m\u1ec7nh c\u1ee7a ch\u00fang t\u00f4i kh\u00f4ng ch\u1ec9 d\u1eebng l\u1ea1i \u1edf vi\u1ec7c t\u01b0 v\u1ea5n, m\u00e0 l\u00e0 trao quy\u1ec1n cho c\u1ed9ng \u0111\u1ed3ng th\u00f4ng qua gi\u00e1o d\u1ee5c. Vi\u1ec7c k\u00fd k\u1ebft MOU h\u00f4m nay l\u00e0 m\u1ed9t c\u1ed9t m\u1ed1c \u00fd ngh\u0129a, n\u01a1i ch\u00fang t\u00f4i v\u00e0 \u0110H\u0110N c\u00f9ng chia s\u1ebb t\u1ea7m nh\u00ecn chung v\u1ec1 vi\u1ec7c b\u1ed3i d\u01b0\u1ee1ng th\u1ebf h\u1ec7 l\u00e3nh \u0111\u1ea1o v\u00e0 c\u00f4ng d\u00e2n to\u00e0n c\u1ea7u ti\u1ebfp theo.&#8221;\n<\/p><\/blockquote>\n<p style=\"text-align: justify;\">\u00d4ng James Kon c\u0169ng kh\u1eb3ng \u0111\u1ecbnh tinh th\u1ea7n <strong>&#8220;Create Impact Beyond Education&#8221;<\/strong> \u2013 \u0111\u1ea3m b\u1ea3o m\u1ed7i s\u00e1ng ki\u1ebfn h\u1ee3p t\u00e1c \u0111\u1ec1u t\u1ea1o ra gi\u00e1 tr\u1ecb th\u1ef1c ti\u1ec5n l\u00e2u d\u00e0i cho sinh vi\u00ean, gi\u1ea3ng vi\u00ean \u0110H\u0110N n\u00f3i ri\u00eang v\u00e0 c\u1ea3 c\u1ed9ng \u0111\u1ed3ng khu v\u1ef1c Mi\u1ec1n Trung n\u00f3i chung.<\/p>\n<p><img loading=\"lazy\" decoding=\"async\" class=\"alignnone wp-image-394328 size-full\" src=\"\/aug-website-files\/wp-content\/uploads\/2025\/12\/aug_vnnews_signing_mou_with_university_of_danang_03.jpg\" alt=\"Signing MOU Between AUG and The University of Danang\" width=\"620\" height=\"414\" \/><br \/>\n<em>\u1ea2nh 3: To\u00e0n c\u1ea3nh bu\u1ed5i l\u00e0m vi\u1ec7c v\u00e0 k\u00fd k\u1ebft MOU \u0111\u01b0\u1ee3c t\u1ed5 ch\u1ee9c theo h\u00ecnh th\u1ee9c tr\u1ef1c tuy\u1ebfn v\u1edbi \u0110\u1ea1i h\u1ecdc \u0110\u00e0 N\u1eb5ng.<\/em><\/p>\n<div style=\"background-color:; height: 20px;\" class=\"nicdark_section\"><\/div>\n<h4><strong>N\u1ed9i dung h\u1ee3p t\u00e1c tr\u1ecdng t\u00e2m<\/strong><\/h4>\n<p>Theo bi\u00ean b\u1ea3n ghi nh\u1edb, hai b\u00ean s\u1ebd ph\u1ed1i h\u1ee3p tri\u1ec3n khai c\u00e1c ho\u1ea1t \u0111\u1ed9ng mang t\u00ednh to\u00e0n di\u1ec7n:<\/p>\n<ul>\n<li><strong>Ch\u01b0\u01a1ng tr\u00ecnh h\u1ecdc thu\u1eadt &amp; Trao \u0111\u1ed5i<\/strong>: Ph\u1ed1i h\u1ee3p tri\u1ec3n khai c\u00e1c ch\u01b0\u01a1ng tr\u00ecnh li\u00ean k\u1ebft \u0111\u00e0o t\u1ea1o (\u0110\u1ea1i h\u1ecdc v\u00e0 Sau \u0111\u1ea1i h\u1ecdc), trao \u0111\u1ed5i sinh vi\u00ean th\u1ef1c t\u1eadp v\u00e0 tr\u1ea3i nghi\u1ec7m h\u1ecdc thu\u1eadt t\u1ea1i c\u00e1c c\u01a1 s\u1edf gi\u00e1o d\u1ee5c \u0111\u1ed1i t\u00e1c c\u1ee7a AUG tr\u00ean to\u00e0n th\u1ebf gi\u1edbi;<\/li>\n<li><strong>Ph\u00e1t tri\u1ec3n chuy\u00ean m\u00f4n<\/strong>: T\u1ed5 ch\u1ee9c c\u00e1c h\u1ed9i th\u1ea3o chuy\u00ean \u0111\u1ec1, kh\u00f3a t\u1eadp hu\u1ea5n v\u1ec1 qu\u1ea3n tr\u1ecb \u0111\u1ea1i h\u1ecdc hi\u1ec7n \u0111\u1ea1i, chuy\u1ec3n \u0111\u1ed5i s\u1ed1 v\u00e0 chi\u1ebfn l\u01b0\u1ee3c qu\u1ed1c t\u1ebf h\u00f3a gi\u00e1o d\u1ee5c;<\/li>\n<li><strong>H\u1ed7 tr\u1ee3 ngu\u1ed3n l\u1ef1c<\/strong>: AUG cam k\u1ebft k\u1ebft n\u1ed1i trao \u0111\u1ed5i gi\u1ea3ng vi\u00ean, h\u1ed7 tr\u1ee3 sinh vi\u00ean \u0110H\u0110N ti\u1ebfp c\u1eadn c\u00e1c ngu\u1ed3n h\u1ecdc b\u1ed5ng qu\u1ed1c t\u1ebf gi\u00e1 tr\u1ecb v\u00e0 c\u01a1 h\u1ed9i \u1ee9ng tuy\u1ec3n t\u1ea1i c\u00e1c doanh nghi\u1ec7p \u0111a qu\u1ed1c gia;<\/li>\n<li><strong>G\u1eafn k\u1ebft c\u1ed9ng \u0111\u1ed3ng<\/strong>: T\u1ed5 ch\u1ee9c c\u00e1c s\u1ef1 ki\u1ec7n t\u01b0 v\u1ea5n du h\u1ecdc, giao l\u01b0u v\u0103n h\u00f3a v\u00e0 c\u00e1c ch\u01b0\u01a1ng tr\u00ecnh ph\u1ee5c v\u1ee5 c\u1ed9ng \u0111\u1ed3ng.<\/li>\n<\/ul>\n<p style=\"text-align: justify;\">L\u1ec5 k\u00fd k\u1ebft MOU gi\u1eefa AUG v\u00e0 \u0110\u1ea1i h\u1ecdc \u0110\u00e0 N\u1eb5ng kh\u00f4ng ch\u1ec9 m\u1edf ra nh\u1eefng l\u1ed9 tr\u00ecnh h\u1ecdc t\u1eadp m\u1edbi m\u00e0 c\u00f2n x\u00e2y d\u1ef1ng m\u1ed9t h\u1ec7 sinh th\u00e1i h\u1ed7 tr\u1ee3 v\u1eefng ch\u1eafc, gi\u00fap gi\u1ea3ng vi\u00ean v\u00e0 sinh vi\u00ean t\u1ef1 tin h\u1ed9i nh\u1eadp v\u1edbi th\u1ecb tr\u01b0\u1eddng lao \u0111\u1ed9ng khu v\u1ef1c v\u00e0 qu\u1ed1c t\u1ebf.<\/p>\n<p style=\"text-align: justify;\">S\u1ef1 ki\u1ec7n k\u1ebft th\u00fac t\u1ed1t \u0111\u1eb9p v\u1edbi s\u1ef1 tin t\u01b0\u1edfng t\u1eeb l\u00e3nh \u0111\u1ea1o hai b\u00ean v\u1ec1 m\u1ed9t m\u1ed1i quan h\u1ec7 \u0111\u1ed1i t\u00e1c b\u1ec1n v\u1eefng, c\u00f9ng h\u01b0\u1edbng t\u1edbi m\u1ee5c ti\u00eau n\u00e2ng t\u1ea7m v\u1ecb th\u1ebf gi\u00e1o d\u1ee5c Vi\u1ec7t Nam tr\u00ean b\u1ea3n \u0111\u1ed3 tri th\u1ee9c to\u00e0n c\u1ea7u.<\/p>\n\n\t\t<\/div>\n\t<\/div>\n<\/div><\/div><\/div><div class=\"wpb_column vc_column_container vc_col-sm-4\"><div class=\"vc_column-inner \"><div class=\"wpb_wrapper\">\n\t<div class=\"wpb_text_column wpb_content_element \">\n\t\t<div class=\"wpb_wrapper\">\n\t\t\t<!DOCTYPE html>\r\n<html lang=\"en\">\r\n<head>\r\n  <style>\r\n    \/* --- SIDEBAR STYLING --- *\/\r\n    #vietnamNewsSidebar {\r\n      max-width: 320px;\r\n      background: #f9f9f9;\r\n      border-left: 2px solid #00aeef;\r\n      padding: 16px;\r\n      font-family: \"Roboto\", Arial, sans-serif;\r\n    }\r\n\r\n    #vietnamNewsSidebar h3 {\r\n      font-size: 1.2rem;\r\n      margin-bottom: 12px;\r\n      color: #4c4c4c;\r\n      text-transform: uppercase;\r\n      letter-spacing: 0.5px;\r\n    }\r\n\r\n    .news-item {\r\n      display: flex;\r\n      align-items: flex-start;\r\n      margin-bottom: 14px;\r\n      border-bottom: 1px solid #e5e5e5;\r\n      padding-bottom: 10px;\r\n    }\r\n\r\n    .news-item img {\r\n      width: 70px;\r\n      height: 70px;\r\n      object-fit: cover;\r\n      margin-right: 10px;\r\n      border-radius: 4px;\r\n    }\r\n\r\n    .news-item a {\r\n      text-decoration: none;\r\n      color: #333;\r\n      font-weight: 500;\r\n      line-height: 1.3;\r\n    }\r\n\r\n    .news-item a:hover {\r\n      color: #0073aa;\r\n    }\r\n\r\n    .news-item small {\r\n      display: block;\r\n      color: #777;\r\n      font-size: 0.8rem;\r\n      margin-top: 2px;\r\n    }\r\n\r\n    \/* --- MORE ARTICLES BUTTON --- *\/\r\n    .more-articles {\r\n      display: block;\r\n      text-align: center;\r\n      margin-top: 16px;\r\n      padding: 10px 0;\r\n      background-color: #004360;\r\n      color: #fff !important;\r\n      border-radius: 4px;\r\n      text-decoration: none;\r\n      font-weight: 500;\r\n      transition: background-color 0.3s;\r\n    }\r\n\r\n    .more-articles:hover {\r\n      background-color: #00688c;\r\n    }\r\n\t  \r\n\t  @media (max-width: 960px) {\r\n\t  \t#vietnamNewsSidebar {\r\n        max-width: none;\r\n\t\t    width: 95%;\r\n      }\r\n\t  }\r\n  <\/style>\r\n<\/head>\r\n<body data-rsssl=1>\r\n\r\n  <aside id=\"vietnamNewsSidebar\">\r\n    <h3>Recent Posts<\/h3>\r\n    <div id=\"vietnamNewsList\">Loading...<\/div>\r\n    <a href=\"https:\/\/augstudy.com\/viet-nam\/vietnam-news\/\" class=\"more-articles\">\r\n      More articles \u2192\r\n    <\/a>\r\n  <\/aside>\r\n\r\n  <script>\r\n    async function fetchVietnamNews() {\r\n      const categorySlug = 'vietnam-news';\r\n      const categoryApi = `https:\/\/augstudy.com\/wp-json\/wp\/v2\/categories?slug=${categorySlug}`;\r\n      const categoryRes = await fetch(categoryApi);\r\n      const categoryData = await categoryRes.json();\r\n\r\n      if (!categoryData.length) {\r\n        document.getElementById('vietnamNewsList').innerText = 'No category found.';\r\n        return;\r\n      }\r\n\r\n      const categoryId = categoryData[0].id;\r\n      const postsApi = `https:\/\/augstudy.com\/wp-json\/wp\/v2\/posts?categories=${categoryId}&per_page=10&_embed`;\r\n      const postsRes = await fetch(postsApi);\r\n      const posts = await postsRes.json();\r\n\r\n      const newsList = document.getElementById('vietnamNewsList');\r\n      newsList.innerHTML = '';\r\n\r\n      posts.forEach(post => {\r\n        const imageUrl =\r\n          post._embedded?.['wp:featuredmedia']?.[0]?.media_details?.sizes?.thumbnail?.source_url ||\r\n          post._embedded?.['wp:featuredmedia']?.[0]?.source_url ||\r\n          'https:\/\/via.placeholder.com\/70x70?text=No+Image';\r\n        const postDate = new Date(post.date).toLocaleDateString();\r\n\r\n        const item = document.createElement('div');\r\n        item.className = 'news-item';\r\n        item.innerHTML = `\r\n          <img decoding=\"async\" src=\"${imageUrl}\" alt=\"\">\r\n          <div>\r\n            <a href=\"${post.link}\">${post.title.rendered}<\/a>\r\n            <small>${postDate}<\/small>\r\n          <\/div>\r\n        `;\r\n        newsList.appendChild(item);\r\n      });\r\n    }\r\n\r\n    fetchVietnamNews();\r\n  <\/script>\r\n\r\n<\/body>\r\n<\/html>\n\n\t\t<\/div>\n\t<\/div>\n<\/div><\/div><\/div><\/div>\n","protected":false},"excerpt":{"rendered":"<p>Exciting changes are coming to Australia\u2019s skilled Visa system starting 7 December 2024! Whether you\u2019re a student &#8230;<\/p>","protected":false},"author":24932,"featured_media":405990,"comment_status":"closed","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[707],"tags":[],"class_list":["post-405971","post","type-post","status-publish","format-standard","hentry","category-vietnam-news","studyfield-course-law"],"yoast_head":"<!-- This site is optimized with the Yoast SEO Premium plugin v27.0 (Yoast SEO v27.3) - https:\/\/yoast.com\/product\/yoast-seo-premium-wordpress\/ -->\n<title>L\u1ec4 K\u00dd K\u1ebeT TH\u1eceA THU\u1eacN H\u1ee2P T\u00c1C (MOU) GI\u1eeeA AUG GLOBAL NETWORK V\u00c0 \u0110\u1ea0I H\u1eccC \u0110\u00c0 N\u1eb4NG: KI\u1ebeN T\u1ea0O GI\u00c1 TR\u1eca B\u1ec0N V\u1eeeNG CHO TH\u1ebe H\u1ec6 T\u01af\u01a0NG LAI - AUG Student Services<\/title>\n<meta name=\"description\" content=\"Ng\u00e0y 15\/12\/2025, T\u1ed5 ch\u1ee9c Gi\u00e1o d\u1ee5c AUG Global Network v\u00e0 \u0110\u1ea1i h\u1ecdc \u0110\u00e0 N\u1eb5ng (\u0110H\u0110N) \u0111\u00e3 ch\u00ednh th\u1ee9c th\u1ef1c hi\u1ec7n nghi th\u1ee9c k\u00fd k\u1ebft Bi\u00ean b\u1ea3n ghi nh\u1edb h\u1ee3p t\u00e1c (MOU) theo h\u00ecnh th\u1ee9c tr\u1ef1c tuy\u1ebfn. S\u1ef1 ki\u1ec7n n\u00e0y \u0111\u00e1nh d\u1ea5u b\u01b0\u1edbc ti\u1ebfn quan tr\u1ecdng trong vi\u1ec7c thi\u1ebft l\u1eadp m\u1ed1i quan h\u1ec7 chi\u1ebfn l\u01b0\u1ee3c nh\u1eb1m th\u00fac \u0111\u1ea9y qu\u1ed1c t\u1ebf h\u00f3a gi\u00e1o d\u1ee5c v\u00e0 m\u1edf r\u1ed9ng c\u01a1 h\u1ed9i ph\u00e1t tri\u1ec3n cho sinh vi\u00ean Vi\u1ec7t Nam\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/augstudy.com\/vi\/signing-mou-university-of-danang\/\" \/>\n<meta property=\"og:locale\" content=\"vi_VN\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"L\u1ec4 K\u00dd K\u1ebeT TH\u1eceA THU\u1eacN H\u1ee2P T\u00c1C (MOU) GI\u1eeeA AUG GLOBAL NETWORK V\u00c0 \u0110\u1ea0I H\u1eccC \u0110\u00c0 N\u1eb4NG: KI\u1ebeN T\u1ea0O GI\u00c1 TR\u1eca B\u1ec0N V\u1eeeNG CHO TH\u1ebe H\u1ec6 T\u01af\u01a0NG LAI\" \/>\n<meta property=\"og:description\" content=\"Ng\u00e0y 15\/12\/2025, T\u1ed5 ch\u1ee9c Gi\u00e1o d\u1ee5c AUG Global Network v\u00e0 \u0110\u1ea1i h\u1ecdc \u0110\u00e0 N\u1eb5ng (\u0110H\u0110N) \u0111\u00e3 ch\u00ednh th\u1ee9c th\u1ef1c hi\u1ec7n nghi th\u1ee9c k\u00fd k\u1ebft Bi\u00ean b\u1ea3n ghi nh\u1edb h\u1ee3p t\u00e1c (MOU) theo h\u00ecnh th\u1ee9c tr\u1ef1c tuy\u1ebfn. S\u1ef1 ki\u1ec7n n\u00e0y \u0111\u00e1nh d\u1ea5u b\u01b0\u1edbc ti\u1ebfn quan tr\u1ecdng trong vi\u1ec7c thi\u1ebft l\u1eadp m\u1ed1i quan h\u1ec7 chi\u1ebfn l\u01b0\u1ee3c nh\u1eb1m th\u00fac \u0111\u1ea9y qu\u1ed1c t\u1ebf h\u00f3a gi\u00e1o d\u1ee5c v\u00e0 m\u1edf r\u1ed9ng c\u01a1 h\u1ed9i ph\u00e1t tri\u1ec3n cho sinh vi\u00ean Vi\u1ec7t Nam\" \/>\n<meta property=\"og:url\" content=\"https:\/\/augstudy.com\/vi\/signing-mou-university-of-danang\/\" \/>\n<meta property=\"og:site_name\" content=\"AUG Student Services\" \/>\n<meta property=\"article:publisher\" content=\"https:\/\/www.facebook.com\/augmalaysia\/\" \/>\n<meta property=\"article:published_time\" content=\"2025-12-23T07:16:43+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2025-12-24T04:36:21+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/augstudy.com\/aug-website-files\/wp-content\/uploads\/2025\/12\/aug_vnnews_signing_mou_with_university_of_danang_02.jpg\" \/>\n\t<meta property=\"og:image:width\" content=\"2048\" \/>\n\t<meta property=\"og:image:height\" content=\"1365\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/jpeg\" \/>\n<meta name=\"author\" content=\"Herven Halim\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"\u0110\u01b0\u1ee3c vi\u1ebft b\u1edfi\" \/>\n\t<meta name=\"twitter:data1\" content=\"Herven Halim\" \/>\n\t<meta name=\"twitter:label2\" content=\"\u01af\u1edbc t\u00ednh th\u1eddi gian \u0111\u1ecdc\" \/>\n\t<meta name=\"twitter:data2\" content=\"5 ph\u00fat\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\\\/\\\/augstudy.com\\\/signing-mou-university-of-danang\\\/#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/augstudy.com\\\/signing-mou-university-of-danang\\\/\"},\"author\":{\"name\":\"Herven Halim\",\"@id\":\"https:\\\/\\\/augstudy.com\\\/#\\\/schema\\\/person\\\/9dbaf883f76babe9422d6e0f5dcaeac1\"},\"headline\":\"L\u1ec4 K\u00dd K\u1ebeT TH\u1eceA THU\u1eacN H\u1ee2P T\u00c1C (MOU) GI\u1eeeA AUG GLOBAL NETWORK V\u00c0 \u0110\u1ea0I H\u1eccC \u0110\u00c0 N\u1eb4NG: KI\u1ebeN T\u1ea0O GI\u00c1 TR\u1eca B\u1ec0N V\u1eeeNG CHO TH\u1ebe H\u1ec6 T\u01af\u01a0NG LAI\",\"datePublished\":\"2025-12-23T07:16:43+00:00\",\"dateModified\":\"2025-12-24T04:36:21+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/augstudy.com\\\/signing-mou-university-of-danang\\\/\"},\"wordCount\":1372,\"image\":{\"@id\":\"https:\\\/\\\/augstudy.com\\\/signing-mou-university-of-danang\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/augstudy.com\\\/aug-website-files\\\/wp-content\\\/uploads\\\/2025\\\/12\\\/aug_vnnews_signing_mou_with_university_of_danang_02.jpg\",\"articleSection\":[\"Vietnam News\"],\"inLanguage\":\"vi\"},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/augstudy.com\\\/signing-mou-university-of-danang\\\/\",\"url\":\"https:\\\/\\\/augstudy.com\\\/signing-mou-university-of-danang\\\/\",\"name\":\"L\u1ec4 K\u00dd K\u1ebeT TH\u1eceA THU\u1eacN H\u1ee2P T\u00c1C (MOU) GI\u1eeeA AUG GLOBAL NETWORK V\u00c0 \u0110\u1ea0I H\u1eccC \u0110\u00c0 N\u1eb4NG: KI\u1ebeN T\u1ea0O GI\u00c1 TR\u1eca B\u1ec0N V\u1eeeNG CHO TH\u1ebe H\u1ec6 T\u01af\u01a0NG LAI - AUG Student Services\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/augstudy.com\\\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/augstudy.com\\\/signing-mou-university-of-danang\\\/#primaryimage\"},\"image\":{\"@id\":\"https:\\\/\\\/augstudy.com\\\/signing-mou-university-of-danang\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/augstudy.com\\\/aug-website-files\\\/wp-content\\\/uploads\\\/2025\\\/12\\\/aug_vnnews_signing_mou_with_university_of_danang_02.jpg\",\"datePublished\":\"2025-12-23T07:16:43+00:00\",\"dateModified\":\"2025-12-24T04:36:21+00:00\",\"author\":{\"@id\":\"https:\\\/\\\/augstudy.com\\\/#\\\/schema\\\/person\\\/9dbaf883f76babe9422d6e0f5dcaeac1\"},\"description\":\"Ng\u00e0y 15\\\/12\\\/2025, T\u1ed5 ch\u1ee9c Gi\u00e1o d\u1ee5c AUG Global Network v\u00e0 \u0110\u1ea1i h\u1ecdc \u0110\u00e0 N\u1eb5ng (\u0110H\u0110N) \u0111\u00e3 ch\u00ednh th\u1ee9c th\u1ef1c hi\u1ec7n nghi th\u1ee9c k\u00fd k\u1ebft Bi\u00ean b\u1ea3n ghi nh\u1edb h\u1ee3p t\u00e1c (MOU) theo h\u00ecnh th\u1ee9c tr\u1ef1c tuy\u1ebfn. S\u1ef1 ki\u1ec7n n\u00e0y \u0111\u00e1nh d\u1ea5u b\u01b0\u1edbc ti\u1ebfn quan tr\u1ecdng trong vi\u1ec7c thi\u1ebft l\u1eadp m\u1ed1i quan h\u1ec7 chi\u1ebfn l\u01b0\u1ee3c nh\u1eb1m th\u00fac \u0111\u1ea9y qu\u1ed1c t\u1ebf h\u00f3a gi\u00e1o d\u1ee5c v\u00e0 m\u1edf r\u1ed9ng c\u01a1 h\u1ed9i ph\u00e1t tri\u1ec3n cho sinh vi\u00ean Vi\u1ec7t Nam\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/augstudy.com\\\/signing-mou-university-of-danang\\\/#breadcrumb\"},\"inLanguage\":\"vi\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/augstudy.com\\\/signing-mou-university-of-danang\\\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"vi\",\"@id\":\"https:\\\/\\\/augstudy.com\\\/signing-mou-university-of-danang\\\/#primaryimage\",\"url\":\"https:\\\/\\\/augstudy.com\\\/aug-website-files\\\/wp-content\\\/uploads\\\/2025\\\/12\\\/aug_vnnews_signing_mou_with_university_of_danang_02.jpg\",\"contentUrl\":\"https:\\\/\\\/augstudy.com\\\/aug-website-files\\\/wp-content\\\/uploads\\\/2025\\\/12\\\/aug_vnnews_signing_mou_with_university_of_danang_02.jpg\",\"width\":2048,\"height\":1365},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/augstudy.com\\\/signing-mou-university-of-danang\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/augstudy.com\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"L\u1ec4 K\u00dd K\u1ebeT TH\u1eceA THU\u1eacN H\u1ee2P T\u00c1C (MOU) GI\u1eeeA AUG GLOBAL NETWORK V\u00c0 \u0110\u1ea0I H\u1eccC \u0110\u00c0 N\u1eb4NG: KI\u1ebeN T\u1ea0O GI\u00c1 TR\u1eca B\u1ec0N V\u1eeeNG CHO TH\u1ebe H\u1ec6 T\u01af\u01a0NG LAI\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/augstudy.com\\\/#website\",\"url\":\"https:\\\/\\\/augstudy.com\\\/\",\"name\":\"AUG Student Services\",\"description\":\"Student Services\",\"alternateName\":\"AUG Global\",\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/augstudy.com\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"vi\"},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/augstudy.com\\\/#\\\/schema\\\/person\\\/9dbaf883f76babe9422d6e0f5dcaeac1\",\"name\":\"Herven Halim\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"vi\",\"@id\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/7d1256ed017a67535e1df2a41248ba9dc9d9e89c0c3754ae3555aa68ef56daf3?s=96&d=mm&r=g\",\"url\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/7d1256ed017a67535e1df2a41248ba9dc9d9e89c0c3754ae3555aa68ef56daf3?s=96&d=mm&r=g\",\"contentUrl\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/7d1256ed017a67535e1df2a41248ba9dc9d9e89c0c3754ae3555aa68ef56daf3?s=96&d=mm&r=g\",\"caption\":\"Herven Halim\"},\"url\":\"https:\\\/\\\/augstudy.com\\\/vi\\\/author\\\/herven-halim\\\/\"}]}<\/script>\n<!-- \/ Yoast SEO Premium plugin. -->","yoast_head_json":{"title":"L\u1ec4 K\u00dd K\u1ebeT TH\u1eceA THU\u1eacN H\u1ee2P T\u00c1C (MOU) GI\u1eeeA AUG GLOBAL NETWORK V\u00c0 \u0110\u1ea0I H\u1eccC \u0110\u00c0 N\u1eb4NG: KI\u1ebeN T\u1ea0O GI\u00c1 TR\u1eca B\u1ec0N V\u1eeeNG CHO TH\u1ebe H\u1ec6 T\u01af\u01a0NG LAI - AUG Student Services","description":"Ng\u00e0y 15\/12\/2025, T\u1ed5 ch\u1ee9c Gi\u00e1o d\u1ee5c AUG Global Network v\u00e0 \u0110\u1ea1i h\u1ecdc \u0110\u00e0 N\u1eb5ng (\u0110H\u0110N) \u0111\u00e3 ch\u00ednh th\u1ee9c th\u1ef1c hi\u1ec7n nghi th\u1ee9c k\u00fd k\u1ebft Bi\u00ean b\u1ea3n ghi nh\u1edb h\u1ee3p t\u00e1c (MOU) theo h\u00ecnh th\u1ee9c tr\u1ef1c tuy\u1ebfn. S\u1ef1 ki\u1ec7n n\u00e0y \u0111\u00e1nh d\u1ea5u b\u01b0\u1edbc ti\u1ebfn quan tr\u1ecdng trong vi\u1ec7c thi\u1ebft l\u1eadp m\u1ed1i quan h\u1ec7 chi\u1ebfn l\u01b0\u1ee3c nh\u1eb1m th\u00fac \u0111\u1ea9y qu\u1ed1c t\u1ebf h\u00f3a gi\u00e1o d\u1ee5c v\u00e0 m\u1edf r\u1ed9ng c\u01a1 h\u1ed9i ph\u00e1t tri\u1ec3n cho sinh vi\u00ean Vi\u1ec7t Nam","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/augstudy.com\/vi\/signing-mou-university-of-danang\/","og_locale":"vi_VN","og_type":"article","og_title":"L\u1ec4 K\u00dd K\u1ebeT TH\u1eceA THU\u1eacN H\u1ee2P T\u00c1C (MOU) GI\u1eeeA AUG GLOBAL NETWORK V\u00c0 \u0110\u1ea0I H\u1eccC \u0110\u00c0 N\u1eb4NG: KI\u1ebeN T\u1ea0O GI\u00c1 TR\u1eca B\u1ec0N V\u1eeeNG CHO TH\u1ebe H\u1ec6 T\u01af\u01a0NG LAI","og_description":"Ng\u00e0y 15\/12\/2025, T\u1ed5 ch\u1ee9c Gi\u00e1o d\u1ee5c AUG Global Network v\u00e0 \u0110\u1ea1i h\u1ecdc \u0110\u00e0 N\u1eb5ng (\u0110H\u0110N) \u0111\u00e3 ch\u00ednh th\u1ee9c th\u1ef1c hi\u1ec7n nghi th\u1ee9c k\u00fd k\u1ebft Bi\u00ean b\u1ea3n ghi nh\u1edb h\u1ee3p t\u00e1c (MOU) theo h\u00ecnh th\u1ee9c tr\u1ef1c tuy\u1ebfn. S\u1ef1 ki\u1ec7n n\u00e0y \u0111\u00e1nh d\u1ea5u b\u01b0\u1edbc ti\u1ebfn quan tr\u1ecdng trong vi\u1ec7c thi\u1ebft l\u1eadp m\u1ed1i quan h\u1ec7 chi\u1ebfn l\u01b0\u1ee3c nh\u1eb1m th\u00fac \u0111\u1ea9y qu\u1ed1c t\u1ebf h\u00f3a gi\u00e1o d\u1ee5c v\u00e0 m\u1edf r\u1ed9ng c\u01a1 h\u1ed9i ph\u00e1t tri\u1ec3n cho sinh vi\u00ean Vi\u1ec7t Nam","og_url":"https:\/\/augstudy.com\/vi\/signing-mou-university-of-danang\/","og_site_name":"AUG Student Services","article_publisher":"https:\/\/www.facebook.com\/augmalaysia\/","article_published_time":"2025-12-23T07:16:43+00:00","article_modified_time":"2025-12-24T04:36:21+00:00","og_image":[{"width":2048,"height":1365,"url":"https:\/\/augstudy.com\/aug-website-files\/wp-content\/uploads\/2025\/12\/aug_vnnews_signing_mou_with_university_of_danang_02.jpg","type":"image\/jpeg"}],"author":"Herven Halim","twitter_card":"summary_large_image","twitter_misc":{"\u0110\u01b0\u1ee3c vi\u1ebft b\u1edfi":"Herven Halim","\u01af\u1edbc t\u00ednh th\u1eddi gian \u0111\u1ecdc":"5 ph\u00fat"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/augstudy.com\/signing-mou-university-of-danang\/#article","isPartOf":{"@id":"https:\/\/augstudy.com\/signing-mou-university-of-danang\/"},"author":{"name":"Herven Halim","@id":"https:\/\/augstudy.com\/#\/schema\/person\/9dbaf883f76babe9422d6e0f5dcaeac1"},"headline":"L\u1ec4 K\u00dd K\u1ebeT TH\u1eceA THU\u1eacN H\u1ee2P T\u00c1C (MOU) GI\u1eeeA AUG GLOBAL NETWORK V\u00c0 \u0110\u1ea0I H\u1eccC \u0110\u00c0 N\u1eb4NG: KI\u1ebeN T\u1ea0O GI\u00c1 TR\u1eca B\u1ec0N V\u1eeeNG CHO TH\u1ebe H\u1ec6 T\u01af\u01a0NG LAI","datePublished":"2025-12-23T07:16:43+00:00","dateModified":"2025-12-24T04:36:21+00:00","mainEntityOfPage":{"@id":"https:\/\/augstudy.com\/signing-mou-university-of-danang\/"},"wordCount":1372,"image":{"@id":"https:\/\/augstudy.com\/signing-mou-university-of-danang\/#primaryimage"},"thumbnailUrl":"https:\/\/augstudy.com\/aug-website-files\/wp-content\/uploads\/2025\/12\/aug_vnnews_signing_mou_with_university_of_danang_02.jpg","articleSection":["Vietnam News"],"inLanguage":"vi"},{"@type":"WebPage","@id":"https:\/\/augstudy.com\/signing-mou-university-of-danang\/","url":"https:\/\/augstudy.com\/signing-mou-university-of-danang\/","name":"L\u1ec4 K\u00dd K\u1ebeT TH\u1eceA THU\u1eacN H\u1ee2P T\u00c1C (MOU) GI\u1eeeA AUG GLOBAL NETWORK V\u00c0 \u0110\u1ea0I H\u1eccC \u0110\u00c0 N\u1eb4NG: KI\u1ebeN T\u1ea0O GI\u00c1 TR\u1eca B\u1ec0N V\u1eeeNG CHO TH\u1ebe H\u1ec6 T\u01af\u01a0NG LAI - AUG Student Services","isPartOf":{"@id":"https:\/\/augstudy.com\/#website"},"primaryImageOfPage":{"@id":"https:\/\/augstudy.com\/signing-mou-university-of-danang\/#primaryimage"},"image":{"@id":"https:\/\/augstudy.com\/signing-mou-university-of-danang\/#primaryimage"},"thumbnailUrl":"https:\/\/augstudy.com\/aug-website-files\/wp-content\/uploads\/2025\/12\/aug_vnnews_signing_mou_with_university_of_danang_02.jpg","datePublished":"2025-12-23T07:16:43+00:00","dateModified":"2025-12-24T04:36:21+00:00","author":{"@id":"https:\/\/augstudy.com\/#\/schema\/person\/9dbaf883f76babe9422d6e0f5dcaeac1"},"description":"Ng\u00e0y 15\/12\/2025, T\u1ed5 ch\u1ee9c Gi\u00e1o d\u1ee5c AUG Global Network v\u00e0 \u0110\u1ea1i h\u1ecdc \u0110\u00e0 N\u1eb5ng (\u0110H\u0110N) \u0111\u00e3 ch\u00ednh th\u1ee9c th\u1ef1c hi\u1ec7n nghi th\u1ee9c k\u00fd k\u1ebft Bi\u00ean b\u1ea3n ghi nh\u1edb h\u1ee3p t\u00e1c (MOU) theo h\u00ecnh th\u1ee9c tr\u1ef1c tuy\u1ebfn. S\u1ef1 ki\u1ec7n n\u00e0y \u0111\u00e1nh d\u1ea5u b\u01b0\u1edbc ti\u1ebfn quan tr\u1ecdng trong vi\u1ec7c thi\u1ebft l\u1eadp m\u1ed1i quan h\u1ec7 chi\u1ebfn l\u01b0\u1ee3c nh\u1eb1m th\u00fac \u0111\u1ea9y qu\u1ed1c t\u1ebf h\u00f3a gi\u00e1o d\u1ee5c v\u00e0 m\u1edf r\u1ed9ng c\u01a1 h\u1ed9i ph\u00e1t tri\u1ec3n cho sinh vi\u00ean Vi\u1ec7t Nam","breadcrumb":{"@id":"https:\/\/augstudy.com\/signing-mou-university-of-danang\/#breadcrumb"},"inLanguage":"vi","potentialAction":[{"@type":"ReadAction","target":["https:\/\/augstudy.com\/signing-mou-university-of-danang\/"]}]},{"@type":"ImageObject","inLanguage":"vi","@id":"https:\/\/augstudy.com\/signing-mou-university-of-danang\/#primaryimage","url":"https:\/\/augstudy.com\/aug-website-files\/wp-content\/uploads\/2025\/12\/aug_vnnews_signing_mou_with_university_of_danang_02.jpg","contentUrl":"https:\/\/augstudy.com\/aug-website-files\/wp-content\/uploads\/2025\/12\/aug_vnnews_signing_mou_with_university_of_danang_02.jpg","width":2048,"height":1365},{"@type":"BreadcrumbList","@id":"https:\/\/augstudy.com\/signing-mou-university-of-danang\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/augstudy.com\/"},{"@type":"ListItem","position":2,"name":"L\u1ec4 K\u00dd K\u1ebeT TH\u1eceA THU\u1eacN H\u1ee2P T\u00c1C (MOU) GI\u1eeeA AUG GLOBAL NETWORK V\u00c0 \u0110\u1ea0I H\u1eccC \u0110\u00c0 N\u1eb4NG: KI\u1ebeN T\u1ea0O GI\u00c1 TR\u1eca B\u1ec0N V\u1eeeNG CHO TH\u1ebe H\u1ec6 T\u01af\u01a0NG LAI"}]},{"@type":"WebSite","@id":"https:\/\/augstudy.com\/#website","url":"https:\/\/augstudy.com\/","name":"D\u1ecbch v\u1ee5 Sinh vi\u00ean AUG","description":"D\u1ecbch v\u1ee5 sinh vi\u00ean","alternateName":"AUG Global","potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/augstudy.com\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"vi"},{"@type":"Person","@id":"https:\/\/augstudy.com\/#\/schema\/person\/9dbaf883f76babe9422d6e0f5dcaeac1","name":"Herven Halim","image":{"@type":"ImageObject","inLanguage":"vi","@id":"https:\/\/secure.gravatar.com\/avatar\/7d1256ed017a67535e1df2a41248ba9dc9d9e89c0c3754ae3555aa68ef56daf3?s=96&d=mm&r=g","url":"https:\/\/secure.gravatar.com\/avatar\/7d1256ed017a67535e1df2a41248ba9dc9d9e89c0c3754ae3555aa68ef56daf3?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/7d1256ed017a67535e1df2a41248ba9dc9d9e89c0c3754ae3555aa68ef56daf3?s=96&d=mm&r=g","caption":"Herven Halim"},"url":"https:\/\/augstudy.com\/vi\/author\/herven-halim\/"}]}},"_links":{"self":[{"href":"https:\/\/augstudy.com\/vi\/wp-json\/wp\/v2\/posts\/405971","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/augstudy.com\/vi\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/augstudy.com\/vi\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/augstudy.com\/vi\/wp-json\/wp\/v2\/users\/24932"}],"replies":[{"embeddable":true,"href":"https:\/\/augstudy.com\/vi\/wp-json\/wp\/v2\/comments?post=405971"}],"version-history":[{"count":5,"href":"https:\/\/augstudy.com\/vi\/wp-json\/wp\/v2\/posts\/405971\/revisions"}],"predecessor-version":[{"id":406011,"href":"https:\/\/augstudy.com\/vi\/wp-json\/wp\/v2\/posts\/405971\/revisions\/406011"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/augstudy.com\/vi\/wp-json\/wp\/v2\/media\/405990"}],"wp:attachment":[{"href":"https:\/\/augstudy.com\/vi\/wp-json\/wp\/v2\/media?parent=405971"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/augstudy.com\/vi\/wp-json\/wp\/v2\/categories?post=405971"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/augstudy.com\/vi\/wp-json\/wp\/v2\/tags?post=405971"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}