2260 lines
121 KiB
HTML
2260 lines
121 KiB
HTML
<!DOCTYPE html>
|
||
<html lang="en">
|
||
<head>
|
||
<meta charset="UTF-8">
|
||
|
||
<title>home</title>
|
||
<!-- UMass Amherst Assets -->
|
||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||
<link href="https://fonts.googleapis.com/css2?family=Open+Sans:wght@400;600;700&display=swap" rel="stylesheet">
|
||
<link rel="stylesheet" media="all" href="/theme-assets/umass/css/css_09S7WcUyhLeUXabknzECn_ua5zOangtv2BF4OXAW2fM.css">
|
||
<link rel="stylesheet" media="all" href="/theme-assets/umass/css/css_5USufIKxGNJyomvgpy2m9ITQlTN9qcrtJQsw_06dSbo.css">
|
||
<link rel="stylesheet" media="all" href="/theme-assets/umass/css/css_G5ztZKRblBn54t8h9F_EK5Y3CsZrMvA2BWPMI5jJoO4.css">
|
||
<!-- Custom CSS -->
|
||
<link rel="stylesheet" href="/css/custom.css">
|
||
<!-- Theme Customizer CSS Output -->
|
||
<style></style>
|
||
<!-- wp_head hook -->
|
||
|
||
|
||
<!-- Add Meta Description for SEO -->
|
||
|
||
<!-- Customizer CSS overrides -->
|
||
<style>
|
||
body {
|
||
font-family: serif;
|
||
}
|
||
/* Inject Customizer Primary Color dynamically */
|
||
a, .text-primary {
|
||
color: \#3ec92c;
|
||
}
|
||
|
||
</style>
|
||
</head>
|
||
<body class="umass-platform-homepage path-frontpage page-node-type-homepage homepage transparent-header">
|
||
<div class="dialog-off-canvas-main-canvas" data-off-canvas-main-canvas="">
|
||
<!-- Include Header Fragment -->
|
||
<header>
|
||
<style>
|
||
.transparent-header #l--main-header {
|
||
position: absolute;
|
||
width: 100%;
|
||
top: 0;
|
||
left: 0;
|
||
z-index: 102;
|
||
}
|
||
|
||
/* --- CUSTOM SUBMENU ANIMATION (UMC Hospital Style) --- */
|
||
@media (min-width: 1024px) {
|
||
/* Main Menu Item Link Hover Effect (Underline slide in) */
|
||
.mc--main-menu .megamenu.menu-item > .link-arrow-wrapper > a {
|
||
position: relative;
|
||
display: inline-block;
|
||
}
|
||
.mc--main-menu .megamenu.menu-item > .link-arrow-wrapper > a::before {
|
||
content: '';
|
||
position: absolute;
|
||
left: 0;
|
||
bottom: -3px;
|
||
height: 3px;
|
||
background-color: #881c1c;
|
||
width: 0;
|
||
transition: width 0.3s ease-in-out;
|
||
}
|
||
.mc--main-menu .megamenu.menu-item:hover > .link-arrow-wrapper > a::before {
|
||
width: 100%;
|
||
}
|
||
|
||
/* Mega Menu Wrapper Animation (Fade in + Slide up) */
|
||
.mc--main-menu .megamenu.menu-item {
|
||
position: relative !important; /* Anchor mega menu vertically to this item */
|
||
}
|
||
|
||
.mc--main-menu .megamenu.menu-item .submenu-wrapper {
|
||
position: absolute !important;
|
||
top: 100% !important;
|
||
/* left and width are dynamically calculated via JS for true full-width */
|
||
transform: translateY(15px) !important;
|
||
background: #f8f9fa !important; /* Soft gray background */
|
||
box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.15) !important;
|
||
opacity: 0 !important;
|
||
visibility: hidden !important;
|
||
transition: opacity 0.3s ease-out, transform 0.3s ease-out, visibility 0.3s ease-out !important;
|
||
padding: 40px 0 !important;
|
||
z-index: 100 !important;
|
||
display: flex !important;
|
||
justify-content: center !important;
|
||
border-top: 4px solid #881c1c; /* Top brand border */
|
||
overflow: hidden;
|
||
}
|
||
|
||
/* Reveal Submenu on Hover */
|
||
.mc--main-menu .megamenu.menu-item:hover .submenu-wrapper {
|
||
opacity: 1 !important;
|
||
visibility: visible !important;
|
||
transform: translateY(0) !important;
|
||
}
|
||
}
|
||
</style>
|
||
|
||
<script>
|
||
document.addEventListener('DOMContentLoaded', function() {
|
||
function adjustMegaMenus() {
|
||
if (window.innerWidth < 1024) return;
|
||
const megamenus = document.querySelectorAll('.mc--main-menu .megamenu.menu-item');
|
||
megamenus.forEach(menu => {
|
||
const wrapper = menu.querySelector('.submenu-wrapper');
|
||
if (wrapper) {
|
||
const rect = menu.getBoundingClientRect();
|
||
// Shift wrapper exactly to the left edge of the window
|
||
wrapper.style.left = '-' + rect.left + 'px';
|
||
// Set width to exact window width
|
||
wrapper.style.width = window.innerWidth + 'px';
|
||
}
|
||
});
|
||
}
|
||
|
||
// Adjust on load and window resize
|
||
adjustMegaMenus();
|
||
window.addEventListener('resize', adjustMegaMenus);
|
||
|
||
// Also adjust precisely on hover in case layout shifted after load
|
||
const megamenus = document.querySelectorAll('.mc--main-menu .megamenu.menu-item');
|
||
megamenus.forEach(menu => {
|
||
menu.addEventListener('mouseenter', adjustMegaMenus);
|
||
});
|
||
});
|
||
</script>
|
||
|
||
<style>
|
||
@media (min-width: 1024px) {
|
||
|
||
/* Arrow Rotation */
|
||
.mc--main-menu .megamenu.menu-item .arrow-toggle svg {
|
||
transition: transform 0.3s ease-in-out;
|
||
}
|
||
.mc--main-menu .megamenu.menu-item:hover .arrow-toggle svg {
|
||
transform: rotate(180deg);
|
||
}
|
||
|
||
/* Mega Menu Layout columns */
|
||
.mega-menu-content {
|
||
display: flex;
|
||
width: 100%;
|
||
max-width: 1200px;
|
||
margin: 0 auto;
|
||
gap: 30px;
|
||
padding: 0 20px;
|
||
}
|
||
|
||
/* Left Column: Info */
|
||
.mega-col-info {
|
||
flex: 1;
|
||
}
|
||
.mega-col-info h3 {
|
||
color: #00529b; /* Classic medical blue */
|
||
font-size: 24px;
|
||
font-weight: 700;
|
||
margin-top: 0;
|
||
margin-bottom: 15px;
|
||
}
|
||
.mega-col-info p {
|
||
color: #4b5563;
|
||
font-size: 14px;
|
||
line-height: 1.6;
|
||
}
|
||
|
||
/* Middle Column: Links */
|
||
.mega-col-links {
|
||
flex: 1.2;
|
||
border-left: 1px solid #d1d5db;
|
||
padding-left: 30px;
|
||
max-height: 350px;
|
||
overflow-y: auto;
|
||
}
|
||
|
||
/* Scrollbar styling for middle column */
|
||
.mega-col-links::-webkit-scrollbar {
|
||
width: 6px;
|
||
}
|
||
.mega-col-links::-webkit-scrollbar-track {
|
||
background: #f1f1f1;
|
||
border-radius: 10px;
|
||
}
|
||
.mega-col-links::-webkit-scrollbar-thumb {
|
||
background: #c1c1c1;
|
||
border-radius: 10px;
|
||
}
|
||
|
||
/* Submenu Link Styling */
|
||
.mc--main-menu .megamenu.menu-item .submenu {
|
||
list-style: none;
|
||
padding: 0;
|
||
margin: 0;
|
||
}
|
||
.mc--main-menu .megamenu.menu-item .submenu .menu-item {
|
||
padding: 0 !important;
|
||
margin: 0 !important;
|
||
}
|
||
.mc--main-menu .megamenu.menu-item .submenu .menu-item a {
|
||
display: block;
|
||
padding: 12px 0;
|
||
color: #111827;
|
||
text-decoration: none;
|
||
font-weight: 600;
|
||
font-size: 14px;
|
||
border-bottom: 1px solid #e5e7eb;
|
||
transition: color 0.2s, padding-left 0.2s;
|
||
}
|
||
.mc--main-menu .megamenu.menu-item .submenu .menu-item:last-child a {
|
||
border-bottom: none;
|
||
}
|
||
.mc--main-menu .megamenu.menu-item .submenu .menu-item a:hover {
|
||
color: #881c1c;
|
||
padding-left: 8px; /* Layout indent animation */
|
||
}
|
||
|
||
/* Right Column: Image */
|
||
.mega-col-image {
|
||
flex: 1;
|
||
display: flex;
|
||
align-items: center;
|
||
justify-content: center;
|
||
border-left: 1px solid #d1d5db;
|
||
padding-left: 30px;
|
||
}
|
||
.mega-col-image img {
|
||
width: 100%;
|
||
height: auto;
|
||
border-radius: 8px;
|
||
box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
|
||
object-fit: cover;
|
||
}
|
||
|
||
/* Hide the mobile back button and title on desktop */
|
||
.mc--main-menu .megamenu.menu-item .submenu-wrapper .button-back,
|
||
.mc--main-menu .megamenu.menu-item .submenu-wrapper .navigation-title {
|
||
display: none !important;
|
||
}
|
||
}
|
||
</style>
|
||
<header id="l--main-header">
|
||
<h1 class="visually-hidden">The University of Massachusetts Amherst</h1>
|
||
<div class="region region-header r--region r--header">
|
||
<section data-component-id="umass_base:site-header" aria-label="Site Header">
|
||
<div data-component-id="umass_base:header-branding">
|
||
<a href="/">
|
||
<img src="/theme-assets/umass/images/logo_white.png" alt="Sisvietnamvn" style="height: auto; max-width: 250px;" />
|
||
</a>
|
||
</div>
|
||
<div class="navigation-container">
|
||
<div id="mobile-flyout-container">
|
||
<div class="primary-navigation">
|
||
<nav class="mc--menu mc--main-menu">
|
||
<ul class="menu m--menu m--main-menu">
|
||
|
||
|
||
<!-- Flat item -->
|
||
|
||
|
||
<!-- Expanded item (has children) -->
|
||
<li class="megamenu menu-item menu-item--expanded">
|
||
<div class="link-arrow-wrapper">
|
||
<a href="#">VỀ BỆNH VIỆN</a>
|
||
<button type="button" class="has-submenu arrow-toggle" aria-expanded="false" aria-haspopup="true" data-once="site-header-arrow">
|
||
<svg version="1.1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 7" width="16" height="7">
|
||
<path fill-rule="evenodd" clip-rule="evenodd" fill="#881c1c" d="M7.88,7L15.75,0H0s7.88,7,7.88,7Z"></path>
|
||
</svg>
|
||
</button>
|
||
</div>
|
||
<div class="submenu-wrapper">
|
||
<button class="button-back">
|
||
<svg version="1.1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 5 10" width="5" height="10">
|
||
<polygon fill-rule="evenodd" clip-rule="evenodd" fill="#881c1c" points="0,5 5,0 5,10 "></polygon>
|
||
</svg> Back </button>
|
||
<span class="navigation-title">VỀ BỆNH VIỆN</span>
|
||
|
||
<!-- Mobile Submenu Layout (Simple List) -->
|
||
<ul class="submenu mobile-only">
|
||
<li class="menu-item">
|
||
<a href="#">GIỚI THIỆU TỔNG QUAN</a>
|
||
</li>
|
||
<li class="menu-item">
|
||
<a href="#">LỊCH SỬ BỆNH VIỆN</a>
|
||
</li>
|
||
<li class="menu-item">
|
||
<a href="#">TẦM NHÌN - SỨ MỆNH - GIÁ TRỊ CỐT LÕI</a>
|
||
</li>
|
||
<li class="menu-item">
|
||
<a href="#">BAN LÃNH ĐẠO</a>
|
||
</li>
|
||
<li class="menu-item">
|
||
<a href="#">CÁC ĐƠN VỊ</a>
|
||
</li>
|
||
</ul>
|
||
|
||
<!-- Mega Menu Content Layout -->
|
||
<div class="mega-menu-content desktop-only">
|
||
<!-- Column 1: Info (Title and Text) -->
|
||
<div class="mega-col-info">
|
||
<h3>VỀ BỆNH VIỆN</h3>
|
||
<p>Bệnh viện Đột quỵ Quốc tế tự hào là đơn vị tiên phong trong việc cung cấp dịch vụ khám chữa bệnh chất lượng cao, mang lại sự tin cậy và an tâm cho bệnh nhân.</p>
|
||
|
||
|
||
</div>
|
||
|
||
<!-- Column 2: The actual Submenu Links -->
|
||
<div class="mega-col-links">
|
||
<ul class="submenu">
|
||
<li class="menu-item">
|
||
<a href="#">GIỚI THIỆU TỔNG QUAN</a>
|
||
</li>
|
||
<li class="menu-item">
|
||
<a href="#">LỊCH SỬ BỆNH VIỆN</a>
|
||
</li>
|
||
<li class="menu-item">
|
||
<a href="#">TẦM NHÌN - SỨ MỆNH - GIÁ TRỊ CỐT LÕI</a>
|
||
</li>
|
||
<li class="menu-item">
|
||
<a href="#">BAN LÃNH ĐẠO</a>
|
||
</li>
|
||
<li class="menu-item">
|
||
<a href="#">CÁC ĐƠN VỊ</a>
|
||
</li>
|
||
</ul>
|
||
</div>
|
||
|
||
<!-- Column 3: Featured Image -->
|
||
<div class="mega-col-image">
|
||
<!-- Try to use a hospital-like image if we can, or fallback to logo -->
|
||
<img src="/theme-assets/umass/images/logo.png" alt="Featured Image" style="object-fit: contain; background: white; padding: 20px;"/>
|
||
</div>
|
||
</div>
|
||
<!-- End Mega Menu Layout -->
|
||
|
||
</div>
|
||
</li>
|
||
|
||
|
||
|
||
<!-- Flat item -->
|
||
|
||
|
||
<!-- Expanded item (has children) -->
|
||
<li class="megamenu menu-item menu-item--expanded">
|
||
<div class="link-arrow-wrapper">
|
||
<a href="#">CHUYÊN KHOA</a>
|
||
<button type="button" class="has-submenu arrow-toggle" aria-expanded="false" aria-haspopup="true" data-once="site-header-arrow">
|
||
<svg version="1.1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 7" width="16" height="7">
|
||
<path fill-rule="evenodd" clip-rule="evenodd" fill="#881c1c" d="M7.88,7L15.75,0H0s7.88,7,7.88,7Z"></path>
|
||
</svg>
|
||
</button>
|
||
</div>
|
||
<div class="submenu-wrapper">
|
||
<button class="button-back">
|
||
<svg version="1.1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 5 10" width="5" height="10">
|
||
<polygon fill-rule="evenodd" clip-rule="evenodd" fill="#881c1c" points="0,5 5,0 5,10 "></polygon>
|
||
</svg> Back </button>
|
||
<span class="navigation-title">CHUYÊN KHOA</span>
|
||
|
||
<!-- Mobile Submenu Layout (Simple List) -->
|
||
<ul class="submenu mobile-only">
|
||
<li class="menu-item">
|
||
<a href="#">Khoa lâm sàng</a>
|
||
</li>
|
||
<li class="menu-item">
|
||
<a href="#">Khoa cận lâm sàng</a>
|
||
</li>
|
||
<li class="menu-item">
|
||
<a href="#">Khoa hỗ trợ lâm sàng</a>
|
||
</li>
|
||
<li class="menu-item">
|
||
<a href="#">Cấp cứu</a>
|
||
</li>
|
||
</ul>
|
||
|
||
<!-- Mega Menu Content Layout -->
|
||
<div class="mega-menu-content desktop-only">
|
||
<!-- Column 1: Info (Title and Text) -->
|
||
<div class="mega-col-info">
|
||
<h3>CHUYÊN KHOA</h3>
|
||
|
||
<p>Khám phá các chuyên khoa hàng đầu với đội ngũ bác sĩ chuyên môn cao, trang thiết bị y tế hiện đại đạt tiêu chuẩn quốc tế.</p>
|
||
|
||
</div>
|
||
|
||
<!-- Column 2: The actual Submenu Links -->
|
||
<div class="mega-col-links">
|
||
<ul class="submenu">
|
||
<li class="menu-item">
|
||
<a href="#">Khoa lâm sàng</a>
|
||
</li>
|
||
<li class="menu-item">
|
||
<a href="#">Khoa cận lâm sàng</a>
|
||
</li>
|
||
<li class="menu-item">
|
||
<a href="#">Khoa hỗ trợ lâm sàng</a>
|
||
</li>
|
||
<li class="menu-item">
|
||
<a href="#">Cấp cứu</a>
|
||
</li>
|
||
</ul>
|
||
</div>
|
||
|
||
<!-- Column 3: Featured Image -->
|
||
<div class="mega-col-image">
|
||
<!-- Try to use a hospital-like image if we can, or fallback to logo -->
|
||
<img src="/theme-assets/umass/images/logo.png" alt="Featured Image" style="object-fit: contain; background: white; padding: 20px;"/>
|
||
</div>
|
||
</div>
|
||
<!-- End Mega Menu Layout -->
|
||
|
||
</div>
|
||
</li>
|
||
|
||
|
||
|
||
<!-- Flat item -->
|
||
<li class="megamenu menu-item">
|
||
<div class="link-arrow-wrapper">
|
||
<a href="#">BÁC SĨ</a>
|
||
</div>
|
||
</li>
|
||
|
||
<!-- Expanded item (has children) -->
|
||
|
||
|
||
|
||
|
||
<!-- Flat item -->
|
||
|
||
|
||
<!-- Expanded item (has children) -->
|
||
<li class="megamenu menu-item menu-item--expanded">
|
||
<div class="link-arrow-wrapper">
|
||
<a href="#">DỊCH VỤ</a>
|
||
<button type="button" class="has-submenu arrow-toggle" aria-expanded="false" aria-haspopup="true" data-once="site-header-arrow">
|
||
<svg version="1.1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 7" width="16" height="7">
|
||
<path fill-rule="evenodd" clip-rule="evenodd" fill="#881c1c" d="M7.88,7L15.75,0H0s7.88,7,7.88,7Z"></path>
|
||
</svg>
|
||
</button>
|
||
</div>
|
||
<div class="submenu-wrapper">
|
||
<button class="button-back">
|
||
<svg version="1.1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 5 10" width="5" height="10">
|
||
<polygon fill-rule="evenodd" clip-rule="evenodd" fill="#881c1c" points="0,5 5,0 5,10 "></polygon>
|
||
</svg> Back </button>
|
||
<span class="navigation-title">DỊCH VỤ</span>
|
||
|
||
<!-- Mobile Submenu Layout (Simple List) -->
|
||
<ul class="submenu mobile-only">
|
||
<li class="menu-item">
|
||
<a href="#">Khám bệnh ngoại trú</a>
|
||
</li>
|
||
<li class="menu-item">
|
||
<a href="#">Điều trị Nội trú</a>
|
||
</li>
|
||
<li class="menu-item">
|
||
<a href="#">Cấp cứu</a>
|
||
</li>
|
||
<li class="menu-item">
|
||
<a href="#">Bảng giá</a>
|
||
</li>
|
||
</ul>
|
||
|
||
<!-- Mega Menu Content Layout -->
|
||
<div class="mega-menu-content desktop-only">
|
||
<!-- Column 1: Info (Title and Text) -->
|
||
<div class="mega-col-info">
|
||
<h3>DỊCH VỤ</h3>
|
||
|
||
|
||
<p>Khám phá thêm thông tin chi tiết về các dịch vụ, chuyên gia và hoạt động của chúng tôi để bảo vệ sức khỏe của bạn.</p>
|
||
</div>
|
||
|
||
<!-- Column 2: The actual Submenu Links -->
|
||
<div class="mega-col-links">
|
||
<ul class="submenu">
|
||
<li class="menu-item">
|
||
<a href="#">Khám bệnh ngoại trú</a>
|
||
</li>
|
||
<li class="menu-item">
|
||
<a href="#">Điều trị Nội trú</a>
|
||
</li>
|
||
<li class="menu-item">
|
||
<a href="#">Cấp cứu</a>
|
||
</li>
|
||
<li class="menu-item">
|
||
<a href="#">Bảng giá</a>
|
||
</li>
|
||
</ul>
|
||
</div>
|
||
|
||
<!-- Column 3: Featured Image -->
|
||
<div class="mega-col-image">
|
||
<!-- Try to use a hospital-like image if we can, or fallback to logo -->
|
||
<img src="/theme-assets/umass/images/logo.png" alt="Featured Image" style="object-fit: contain; background: white; padding: 20px;"/>
|
||
</div>
|
||
</div>
|
||
<!-- End Mega Menu Layout -->
|
||
|
||
</div>
|
||
</li>
|
||
|
||
|
||
|
||
<!-- Flat item -->
|
||
<li class="megamenu menu-item">
|
||
<div class="link-arrow-wrapper">
|
||
<a href="#">ĐÀO TẠO</a>
|
||
</div>
|
||
</li>
|
||
|
||
<!-- Expanded item (has children) -->
|
||
|
||
|
||
|
||
|
||
<!-- Flat item -->
|
||
|
||
|
||
<!-- Expanded item (has children) -->
|
||
<li class="megamenu menu-item menu-item--expanded">
|
||
<div class="link-arrow-wrapper">
|
||
<a href="#">TIN TỨC VÀ SỰ KIỆN</a>
|
||
<button type="button" class="has-submenu arrow-toggle" aria-expanded="false" aria-haspopup="true" data-once="site-header-arrow">
|
||
<svg version="1.1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 7" width="16" height="7">
|
||
<path fill-rule="evenodd" clip-rule="evenodd" fill="#881c1c" d="M7.88,7L15.75,0H0s7.88,7,7.88,7Z"></path>
|
||
</svg>
|
||
</button>
|
||
</div>
|
||
<div class="submenu-wrapper">
|
||
<button class="button-back">
|
||
<svg version="1.1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 5 10" width="5" height="10">
|
||
<polygon fill-rule="evenodd" clip-rule="evenodd" fill="#881c1c" points="0,5 5,0 5,10 "></polygon>
|
||
</svg> Back </button>
|
||
<span class="navigation-title">TIN TỨC VÀ SỰ KIỆN</span>
|
||
|
||
<!-- Mobile Submenu Layout (Simple List) -->
|
||
<ul class="submenu mobile-only">
|
||
<li class="menu-item">
|
||
<a href="#"> Tin tức</a>
|
||
</li>
|
||
<li class="menu-item">
|
||
<a href="#">Sự kiện</a>
|
||
</li>
|
||
<li class="menu-item">
|
||
<a href="#">Góc người bệnh</a>
|
||
</li>
|
||
<li class="menu-item">
|
||
<a href="#">Công tác xã hội</a>
|
||
</li>
|
||
</ul>
|
||
|
||
<!-- Mega Menu Content Layout -->
|
||
<div class="mega-menu-content desktop-only">
|
||
<!-- Column 1: Info (Title and Text) -->
|
||
<div class="mega-col-info">
|
||
<h3>TIN TỨC VÀ SỰ KIỆN</h3>
|
||
|
||
|
||
<p>Khám phá thêm thông tin chi tiết về các dịch vụ, chuyên gia và hoạt động của chúng tôi để bảo vệ sức khỏe của bạn.</p>
|
||
</div>
|
||
|
||
<!-- Column 2: The actual Submenu Links -->
|
||
<div class="mega-col-links">
|
||
<ul class="submenu">
|
||
<li class="menu-item">
|
||
<a href="#"> Tin tức</a>
|
||
</li>
|
||
<li class="menu-item">
|
||
<a href="#">Sự kiện</a>
|
||
</li>
|
||
<li class="menu-item">
|
||
<a href="#">Góc người bệnh</a>
|
||
</li>
|
||
<li class="menu-item">
|
||
<a href="#">Công tác xã hội</a>
|
||
</li>
|
||
</ul>
|
||
</div>
|
||
|
||
<!-- Column 3: Featured Image -->
|
||
<div class="mega-col-image">
|
||
<!-- Try to use a hospital-like image if we can, or fallback to logo -->
|
||
<img src="/theme-assets/umass/images/logo.png" alt="Featured Image" style="object-fit: contain; background: white; padding: 20px;"/>
|
||
</div>
|
||
</div>
|
||
<!-- End Mega Menu Layout -->
|
||
|
||
</div>
|
||
</li>
|
||
|
||
|
||
|
||
<!-- Flat item -->
|
||
<li class="megamenu menu-item">
|
||
<div class="link-arrow-wrapper">
|
||
<a href="#">TRUYỀN THÔNG</a>
|
||
</div>
|
||
</li>
|
||
|
||
<!-- Expanded item (has children) -->
|
||
|
||
|
||
|
||
</ul>
|
||
</nav>
|
||
</div>
|
||
</div>
|
||
<button id="search-drawer-trigger" aria-label="Open Search" data-once="header-search">
|
||
<svg class="search-trigger-open" xmlns="http://www.w3.org/2000/svg" version="1.1" viewBox="0 0 25 25">
|
||
<title>Open Search</title>
|
||
<path fill-rule="evenodd" clip-rule="evenodd" fill="#fff" d="M10.03,2.67c-4.07,0-7.36,3.29-7.36,7.36s3.29,7.36,7.36,7.36,7.36-3.29,7.36-7.36c-.01-4.07-3.3-7.36-7.36-7.36ZM10.03,0c5.54,0,10.03,4.49,10.03,10.03,0,2.29-.76,4.39-2.05,6.08l7,7-1.89,1.89-7.01-7.01c-1.68,1.29-3.79,2.05-6.08,2.05C4.49,20.04,0,15.55,0,10.03S4.49,0,10.03,0Z"></path>
|
||
</svg>
|
||
<svg class="search-trigger-close" xmlns="http://www.w3.org/2000/svg" version="1.1" viewBox="0 0 22 22">
|
||
<title>Close Search</title>
|
||
<path fill-rule="evenodd" clip-rule="evenodd" fill="#fff" d="M3.64,1.2l-1.21-1.2L0,2.39l1.21,1.19,7.36,7.25-7.36,7.25-1.21,1.19,2.43,2.39,1.21-1.2,7.36-7.24,7.36,7.24,1.22,1.2,2.42-2.39-1.21-1.19-7.36-7.25,7.36-7.25,1.21-1.19-2.42-2.39-1.22,1.2-7.36,7.24L3.64,1.2Z"></path>
|
||
</svg>
|
||
</button>
|
||
<button id="mobile-hamburger" class="mobile-hamburger hamburger--squeeze" aria-label="Open Main Navigation" data-once="site-header-hamburger">
|
||
<span class="hamburger-box">
|
||
<span class="hamburger-inner"></span>
|
||
</span>
|
||
</button>
|
||
</div>
|
||
</section>
|
||
<div data-component-id="umass_base:header-search">
|
||
<div id="search-flyout-container">
|
||
<div class="search-flyout">
|
||
<div data-component-id="umass_base:header-branding">
|
||
<a href="/">
|
||
<img src="/theme-assets/umass/images/logo.png" alt="Sisvietnamvn" style="height: 60px; width: auto;" />
|
||
</a>
|
||
</div>
|
||
<div>
|
||
<form autocomplete="on" name="search-form" action="https://www.umass.edu/search" method="GET">
|
||
<div>
|
||
<label class="visually-hidden" for="search">Search UMass</label>
|
||
<input type="text" name="q" id="search" maxlength="50" placeholder="Search UMass" size="50" class="ally-focus-within">
|
||
</div>
|
||
<button type="submit" class="icon-search" aria-label="Search">
|
||
<svg version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" viewBox="0 0 19 19" enable-background="new 0 0 19 19" xml:space="preserve" width="19" height="19">
|
||
<title>Search</title>
|
||
<path fill-rule="evenodd" clip-rule="evenodd" fill="#151515" d="M7.62,2.03c-3.09,0-5.59,2.5-5.59,5.59
|
||
s2.5,5.59,5.59,5.59s5.59-2.5,5.59-5.59C13.2,4.53,10.7,2.03,7.62,2.03z M7.62,0c4.21,0,7.62,3.41,7.62,7.62
|
||
c0,1.74-0.58,3.34-1.56,4.62L19,17.56L17.56,19l-5.33-5.33c-1.28,0.98-2.88,1.56-4.62,1.56C3.41,15.23,0,11.82,0,7.62S3.41,0,7.62,0
|
||
z"></path>
|
||
</svg>
|
||
</button>
|
||
</form>
|
||
<ul class="menu">
|
||
<li class="menu-item">
|
||
<a href="https://www.umass.edu/admissions/visit">Campus tours</a>
|
||
</li>
|
||
<li class="menu-item">
|
||
<a href="https://www.umass.edu/financialaid/undergraduate-costs">Tuition</a>
|
||
</li>
|
||
<li class="menu-item">
|
||
<a href="https://www.umass.edu/financialaid">Financial aid</a>
|
||
</li>
|
||
<li class="menu-item">
|
||
<a href="https://www.umass.edu/admissions/apply">How to apply</a>
|
||
</li>
|
||
<li class="menu-item">
|
||
<a href="https://www.umass.edu/gateway/umass-stories/study-abroad-umass">Study abroad</a>
|
||
</li>
|
||
</ul>
|
||
</div>
|
||
<button id="search-drawer-trigger-active" aria-label="Open Search" data-once="header-search">
|
||
<svg xmlns="http://www.w3.org/2000/svg" version="1.1" viewBox="0 0 22 22">
|
||
<title>Close Search</title>
|
||
<path fill-rule="evenodd" clip-rule="evenodd" fill="#fff" d="M3.64,1.2l-1.21-1.2L0,2.39l1.21,1.19,7.36,7.25-7.36,7.25-1.21,1.19,2.43,2.39,1.21-1.2,7.36-7.24,7.36,7.24,1.22,1.2,2.42-2.39-1.21-1.19-7.36-7.25,7.36-7.25,1.21-1.19-2.42-2.39-1.22,1.2-7.36,7.24L3.64,1.2Z"></path>
|
||
</svg>
|
||
</button>
|
||
</div>
|
||
</div>
|
||
</div>
|
||
</div>
|
||
</header>
|
||
</header>
|
||
<main id="main-content">
|
||
<div class="l--content">
|
||
<div class="content">
|
||
<div class="region region-content r--region r--content">
|
||
<!-- Content Area -->
|
||
<div style="min-height: 400px;">
|
||
<div style="width: 100%;">
|
||
|
||
|
||
<!-- 1. HTML Snippet Block (Custom) -->
|
||
|
||
|
||
<!-- BEGIN Snippet: content-top -->
|
||
<div class="content-top">
|
||
<div class="lc--layout-container lc--full">
|
||
<div class="l--layout l--full">
|
||
<div class="lr--layout-region lr--main">
|
||
<div class="cc--component-container cc--homepage-hero ">
|
||
<div class="c--component c--homepage-hero">
|
||
<div class="slides-container">
|
||
<div class="image-video-container has-video">
|
||
<img src="https://www.umass.edu/sites/default/files/styles/1_1_1920x1920/public/2025-09/250616_UMASS_4515.jpg" alt="Students collaborate using a driving simulator in the UMass Center for Transportation." srcset="https://www.umass.edu/sites/default/files/styles/1_1_1920x1920/public/2025-09/250616_UMASS_4515.jpg?h=9855f42d&itok=d27r8GaT 1920w">
|
||
<div class="f--ambient-video">
|
||
<video role="presentation" tabindex="-1" loop="" autoplay="" playsinline="" muted="">
|
||
<source src="http://localhost:8080/uploads/2026/07/9375f45b-027a-4fb4-bd18-66889309280d.mp4"
|
||
type="video/mp4">
|
||
</video>
|
||
</div>
|
||
<div class="video-controls" data-once="ambientVideo">
|
||
<div class="video-controls-inner">
|
||
<button aria-labelledby="pauseBtn" class="video-button video-pause-button">
|
||
<svg height="14" viewBox="0 0 10 14" width="10" xmlns="http://www.w3.org/2000/svg">
|
||
<title id="pauseBtn">Pause Background Video</title>
|
||
<path d="m1143 711v14h-3v-14zm7 0v14h-3v-14z" fill="#fff" fill-rule="evenodd" transform="translate(-1140 -711)"></path>
|
||
</svg>
|
||
</button>
|
||
<button aria-labelledby="playBtn" class="video-button video-play-button">
|
||
<svg height="29" viewBox="0 0 29 29" width="29" xmlns="http://www.w3.org/2000/svg">
|
||
<title id="playBtn">Play Background Video</title>
|
||
<path d="m17.5 3c-7.99789474 0-14.5 6.50210526-14.5 14.5 0 7.9978947 6.50210526 14.5 14.5 14.5 7.9978947 0 14.5-6.5021053 14.5-14.5 0-7.99789474-6.5021053-14.5-14.5-14.5zm5.6763936 15.2939067-7.3503366 4.5939604c-.6635721.408352-1.5313202-.051044-1.5313202-.8422261v-9.1879207c0-.7911821.8677481-1.2761001 1.5313202-.8422261l7.3503366 4.5939604c.612528.38283.612528 1.3016221 0 1.6844521z" fill="#fff" fill-rule="evenodd" transform="translate(-3 -3)"></path>
|
||
</svg>
|
||
</button>
|
||
</div>
|
||
</div>
|
||
</div>
|
||
<div class="text-container centered">
|
||
<div class="slide-text-container-inner">
|
||
<h3>
|
||
<a href="https://www.umass.edu/gateway/why-umass">Stroke International School 2026</a>
|
||
</h3>
|
||
<div class="f--field f--button">
|
||
<a href="https://www.umass.edu/gateway/why-umass" class="button-secondary button-context-dark "
|
||
aria-label="Learn More Learn more about UMass Amherst." data-component-id="umass_base:button">
|
||
<span class="button-text"> Learn More </span>
|
||
</a>
|
||
</div>
|
||
|
||
<!-- BEGIN Component: info-dropdown -->
|
||
<nav class="mc--menu mc--info-menu">
|
||
<ul class="menu m--menu m--info-menu">
|
||
<li class="menu-item menu-item--expanded">
|
||
<details class="utility-button-wrapper mc--info-menu-container">
|
||
<summary type="button" aria-label="Display submenu" aria-expanded="false" aria-haspopup="true" class="utility-button arrow-toggle information-for-toggle">
|
||
<span>Thông Tin</span>
|
||
<svg version="1.1" xmlns="http://www.w3.org/2000/svg" x="0px" y="0px" viewBox="0 0 16 7" width="16" height="7" class="arrow">
|
||
<polygon fill-rule="evenodd" clip-rule="evenodd" fill="#ffffff" points="7,7 0,0 16,0"></polygon>
|
||
</svg>
|
||
</summary>
|
||
<div class="submenu-wrapper">
|
||
<ul class="submenu">
|
||
|
||
<li class="menu-item"><a href="#">VỀ CHUYÊN KHOA</a></li>
|
||
|
||
<li class="menu-item"><a href="#">TÌM BÁC SĨ</a></li>
|
||
|
||
<li class="menu-item"><a href="#">LỊCH KHÁM BỆNH</a></li>
|
||
|
||
<li class="menu-item"><a href="#">DỊCH VỤ</a></li>
|
||
|
||
<li class="menu-item"><a href="#">HỖ TRỢ NGƯỜI BỆNH</a></li>
|
||
|
||
</ul>
|
||
</div>
|
||
</details>
|
||
<div class="submenu-wrapper-desktop">
|
||
<ul class="submenu">
|
||
|
||
<li class="menu-item"><a href="#">VỀ CHUYÊN KHOA</a></li>
|
||
|
||
<li class="menu-item"><a href="#">TÌM BÁC SĨ</a></li>
|
||
|
||
<li class="menu-item"><a href="#">LỊCH KHÁM BỆNH</a></li>
|
||
|
||
<li class="menu-item"><a href="#">DỊCH VỤ</a></li>
|
||
|
||
<li class="menu-item"><a href="#">HỖ TRỢ NGƯỜI BỆNH</a></li>
|
||
|
||
</ul>
|
||
</div>
|
||
</li>
|
||
</ul>
|
||
</nav>
|
||
<!-- END Component: info-dropdown -->
|
||
|
||
</div>
|
||
</div>
|
||
</div>
|
||
</div>
|
||
</div>
|
||
</div>
|
||
</div>
|
||
</div>
|
||
</div>
|
||
<!-- END Snippet: content-top -->
|
||
|
||
|
||
|
||
<!-- 2. Header Block -->
|
||
|
||
|
||
<!-- 3. Paragraph Block -->
|
||
|
||
|
||
<!-- 4. List Block -->
|
||
|
||
|
||
<!-- 5. Image Block -->
|
||
|
||
|
||
<!-- 6. Quote Block -->
|
||
|
||
|
||
<!-- 7. Delimiter Block -->
|
||
|
||
|
||
<!-- 8. Table Block -->
|
||
|
||
|
||
|
||
|
||
<!-- 1. HTML Snippet Block (Custom) -->
|
||
|
||
|
||
<!-- BEGIN Snippet: block_1_block-multiple-ctas -->
|
||
<div data-component-id="umass_base:block-multiple-ctas" data-background="solid" data-layout-variant="default">
|
||
<div class="container" th:unless="${ctaMenu != null and not #lists.isEmpty(ctaMenu.items)}">
|
||
<div class="text-container">
|
||
<div data-component-id="umass_base:section-title" class="f--section-title">
|
||
<h2>TÌM HIỂU<span class="highlight">CHUYÊN KHOA</span></h2>
|
||
</div>
|
||
</div>
|
||
<div class="links-container">
|
||
|
||
<!-- BEGIN Component: cta-buttons -->
|
||
|
||
<div class="f--field f--button">
|
||
<a href="#" class="button-text-link button-context-light"
|
||
aria-label="KHOA CẤP CỨU" target="_self"
|
||
data-component-id="umass_base:button" style="box-shadow: 0 1px 0 var(--color-brand)">
|
||
<span class="button-text"> KHOA CẤP CỨU </span>
|
||
</a>
|
||
</div>
|
||
|
||
<div class="f--field f--button">
|
||
<a href="#" class="button-text-link button-context-light"
|
||
aria-label="CẤP CỨU NGOẠI VIỆN" target="_self"
|
||
data-component-id="umass_base:button" style="box-shadow: 0 1px 0 var(--color-brand)">
|
||
<span class="button-text"> CẤP CỨU NGOẠI VIỆN </span>
|
||
</a>
|
||
</div>
|
||
|
||
<div class="f--field f--button">
|
||
<a href="#" class="button-text-link button-context-light"
|
||
aria-label="KHOA KHÁM BỆNH" target="_self"
|
||
data-component-id="umass_base:button" style="box-shadow: 0 1px 0 var(--color-brand)">
|
||
<span class="button-text"> KHOA KHÁM BỆNH </span>
|
||
</a>
|
||
</div>
|
||
|
||
<div class="f--field f--button">
|
||
<a href="#" class="button-text-link button-context-light"
|
||
aria-label="KHOA NỘI TỔNG HỢP" target="_self"
|
||
data-component-id="umass_base:button" style="box-shadow: 0 1px 0 var(--color-brand)">
|
||
<span class="button-text"> KHOA NỘI TỔNG HỢP </span>
|
||
</a>
|
||
</div>
|
||
|
||
<!-- END Component: cta-buttons -->
|
||
|
||
</div>
|
||
</div>
|
||
</div>
|
||
<!-- END Snippet: block_1_block-multiple-ctas -->
|
||
|
||
|
||
|
||
<!-- 2. Header Block -->
|
||
|
||
|
||
<!-- 3. Paragraph Block -->
|
||
|
||
|
||
<!-- 4. List Block -->
|
||
|
||
|
||
<!-- 5. Image Block -->
|
||
|
||
|
||
<!-- 6. Quote Block -->
|
||
|
||
|
||
<!-- 7. Delimiter Block -->
|
||
|
||
|
||
<!-- 8. Table Block -->
|
||
|
||
|
||
|
||
|
||
<!-- 1. HTML Snippet Block (Custom) -->
|
||
|
||
|
||
<!-- BEGIN Snippet: block_3_button -->
|
||
<body>
|
||
<div class="cc--component-container cc--stats-block" style="background-color: var(--color-brand)">
|
||
<div class="c--component c--stats-block">
|
||
<div class="f--field f--stats-block">
|
||
<div class="cc--component-container cc--stat">
|
||
<div class="c--component c--stat">
|
||
<div id="iuox8" class="f--field f--stat-number">50.000+</div>
|
||
<div id="iynqf" class="f--field f--description">
|
||
<p>Tổng số ca cấp cứu</p>
|
||
</div>
|
||
</div>
|
||
</div>
|
||
<div class="cc--component-container cc--stat">
|
||
<div class="c--component c--stat">
|
||
<div id="ievo1" class="f--field f--stat-number">1.6tr+</div>
|
||
<div id="iklnr" class="f--field f--description">
|
||
<p>Tổng số ca khám bệnh</p>
|
||
</div>
|
||
</div>
|
||
</div>
|
||
<div class="cc--component-container cc--stat">
|
||
<div class="c--component c--stat">
|
||
<div id="iz72l" class="f--field f--stat-number">#1</div>
|
||
<div id="i0kg8" class="f--field f--description">
|
||
<p>Về điều trị đột quỵ</p>
|
||
</div>
|
||
</div>
|
||
</div>
|
||
</div>
|
||
</div>
|
||
</div>
|
||
</body>
|
||
<style>
|
||
* { box-sizing: border-box; } body {margin: 0;}*{box-sizing:border-box;}body{margin-top:0px;margin-right:0px;margin-bottom:0px;margin-left:0px;}#iuox8{color:white;}#iynqf{color:white;}#ievo1{color:white;}#iklnr{color:white;}#iz72l{color:white;}#i0kg8{color:white;}#iynqf *{color:white;}#iklnr *{color:white;}#i0kg8 *{color:white;}
|
||
</style>
|
||
<!-- END Snippet: block_3_button -->
|
||
|
||
|
||
|
||
<!-- 2. Header Block -->
|
||
|
||
|
||
<!-- 3. Paragraph Block -->
|
||
|
||
|
||
<!-- 4. List Block -->
|
||
|
||
|
||
<!-- 5. Image Block -->
|
||
|
||
|
||
<!-- 6. Quote Block -->
|
||
|
||
|
||
<!-- 7. Delimiter Block -->
|
||
|
||
|
||
<!-- 8. Table Block -->
|
||
|
||
|
||
|
||
|
||
<!-- 1. HTML Snippet Block (Custom) -->
|
||
|
||
|
||
<!-- BEGIN Snippet: block_9_news_features -->
|
||
<body>
|
||
<div class="cc--component-container cc--news-events">
|
||
<div class="c--component c--news-events">
|
||
<!-- Header -->
|
||
<div class="news-events-row">
|
||
<div class="news-column">
|
||
<div
|
||
style="display: flex; justify-content: space-between; align-items: baseline; border-bottom: 2px solid var(--color-brand); margin-bottom: 16px;">
|
||
<!-- Thêm flex-grow: 1 vào style của h2 -->
|
||
<h2 class="section-title--news"
|
||
style="font-size: 2rem; margin: 0; padding-bottom: 4px; border-bottom: unset;">TIN TỨC</h2>
|
||
<a href="/news/news-events" class="news-events-section__cta news-events-section__cta--desktop"
|
||
style="color: var(--color-brand); font-weight: 800; font-size: 16px; text-transform: uppercase; text-decoration: none; border-bottom: unset;">XEM
|
||
THÊM</a>
|
||
</div>
|
||
<div class="news-list">
|
||
|
||
<!-- BEGIN Component: news-grid -->
|
||
|
||
<div class="featured-grid__item">
|
||
<article class="news-card news-card--featured">
|
||
<div class="news-card__image">
|
||
<div>
|
||
<img loading="lazy" src="https://sisvietnam.vn/wp-content/uploads/2026/07/1.7-Phau-thuat-noi-soi-giup-nguoi-phu-nu-thoat-nguy-co-liet-chan-do-thoat-vi-dia-dem-hiem-gap1-1024x683.jpg" alt="Phẫu thuật nội soi giúp người phụ nữ thoát nguy cơ liệt chân do thoát vị đĩa đệm hiếm gặp (Copy)">
|
||
</div>
|
||
</div>
|
||
<div class="news-card__content">
|
||
<div class="featured-grid__category">
|
||
<a href="#">TIN TỨC</a>
|
||
</div>
|
||
<h3 class="news-card__title">
|
||
<a href="/post/phau-thuat-noi-soi-giup-nguoi-phu-nu-thoat-nguy-co-liet-chan-do-thoat-vi-dia-dem-hiem-gap-copy-1" rel="bookmark">
|
||
<span>Phẫu thuật nội soi giúp người phụ nữ thoát nguy cơ liệt chân do thoát vị đĩa đệm hiếm gặp (Copy)</span>
|
||
</a>
|
||
</h3>
|
||
<div class="news-card__date">14/07/2026</div>
|
||
</div>
|
||
</article>
|
||
</div>
|
||
|
||
<div class="featured-grid__item">
|
||
<article class="news-card news-card--featured">
|
||
<div class="news-card__image">
|
||
<div>
|
||
<img loading="lazy" src="https://sisvietnam.vn/wp-content/uploads/2026/07/1.7-Phau-thuat-noi-soi-giup-nguoi-phu-nu-thoat-nguy-co-liet-chan-do-thoat-vi-dia-dem-hiem-gap1-1024x683.jpg" alt="Phẫu thuật nội soi giúp người phụ nữ thoát nguy cơ liệt chân do thoát vị đĩa đệm hiếm gặp (Copy)">
|
||
</div>
|
||
</div>
|
||
<div class="news-card__content">
|
||
<div class="featured-grid__category">
|
||
<a href="#">TIN TỨC</a>
|
||
</div>
|
||
<h3 class="news-card__title">
|
||
<a href="/post/phau-thuat-noi-soi-giup-nguoi-phu-nu-thoat-nguy-co-liet-chan-do-thoat-vi-dia-dem-hiem-gap-copy" rel="bookmark">
|
||
<span>Phẫu thuật nội soi giúp người phụ nữ thoát nguy cơ liệt chân do thoát vị đĩa đệm hiếm gặp (Copy)</span>
|
||
</a>
|
||
</h3>
|
||
<div class="news-card__date">14/07/2026</div>
|
||
</div>
|
||
</article>
|
||
</div>
|
||
|
||
<div class="featured-grid__item">
|
||
<article class="news-card news-card--featured">
|
||
<div class="news-card__image">
|
||
<div>
|
||
<img loading="lazy" src="https://sisvietnam.vn/wp-content/uploads/2026/07/7.4-Dau-dau-chong-mat-suot-20-ngay-cu-ba-u80-phat-hien-khoi-nam-xoang-buom-xam-lan-nen-so-chen-ep-dong-mach-canh-2-1024x649.jpg" alt="Đau đầu chóng mặt suốt 20 ngày, cụ bà u80 phát hiện khối nấm xoang bướm xâm lấn nền sọ, chèn ép động mạch cảnh (Copy)">
|
||
</div>
|
||
</div>
|
||
<div class="news-card__content">
|
||
<div class="featured-grid__category">
|
||
<a href="#">TIN TỨC</a>
|
||
</div>
|
||
<h3 class="news-card__title">
|
||
<a href="/post/dau-dau-chong-mat-suot-20-ngay-cu-ba-u80-phat-hien-khoi-nam-xoang-buom-xam-lan-nen-so-chen-ep-dong-mach-canh-copy" rel="bookmark">
|
||
<span>Đau đầu chóng mặt suốt 20 ngày, cụ bà u80 phát hiện khối nấm xoang bướm xâm lấn nền sọ, chèn ép động mạch cảnh (Copy)</span>
|
||
</a>
|
||
</h3>
|
||
<div class="news-card__date">14/07/2026</div>
|
||
</div>
|
||
</article>
|
||
</div>
|
||
|
||
<div class="featured-grid__item">
|
||
<article class="news-card news-card--featured">
|
||
<div class="news-card__image">
|
||
<div>
|
||
<img loading="lazy" src="https://sisvietnam.vn/wp-content/uploads/2026/07/7.4-Dau-dau-chong-mat-suot-20-ngay-cu-ba-u80-phat-hien-khoi-nam-xoang-buom-xam-lan-nen-so-chen-ep-dong-mach-canh-2-1024x649.jpg" alt="Đau đầu chóng mặt suốt 20 ngày, cụ bà u80 phát hiện khối nấm xoang bướm xâm lấn nền sọ, chèn ép động mạch cảnh">
|
||
</div>
|
||
</div>
|
||
<div class="news-card__content">
|
||
<div class="featured-grid__category">
|
||
<a href="#">TIN TỨC</a>
|
||
</div>
|
||
<h3 class="news-card__title">
|
||
<a href="/post/dau-dau-chong-mat-suot-20-ngay-cu-ba-u80-phat-hien-khoi-nam-xoang-buom-xam-lan-nen-so-chen-ep-dong-mach-canh" rel="bookmark">
|
||
<span>Đau đầu chóng mặt suốt 20 ngày, cụ bà u80 phát hiện khối nấm xoang bướm xâm lấn nền sọ, chèn ép động mạch cảnh</span>
|
||
</a>
|
||
</h3>
|
||
<div class="news-card__date">13/07/2026</div>
|
||
</div>
|
||
</article>
|
||
</div>
|
||
|
||
<!-- END Component: news-grid -->
|
||
|
||
</div>
|
||
</div>
|
||
<div class="events-column">
|
||
<div
|
||
style="display: flex; justify-content: space-between; align-items: baseline; border-bottom: 2px solid var(--color-brand); margin-bottom: 16px;">
|
||
<!-- Thêm flex-grow: 1 vào style của h2 "Sự Kiện" -->
|
||
<h2 class="events-title"
|
||
style="font-size: 2rem; margin: 0; padding-bottom: 4px; text-transform: uppercase; border-bottom: unset;">
|
||
SỰ KIỆN</h2>
|
||
<a href="/news/news-events" class="news-events-section__cta news-events-section__cta--desktop"
|
||
style="color: var(--color-brand); font-weight: 800; font-size: 16px; text-transform: uppercase; text-decoration: none; border-bottom: unset;">XEM
|
||
THÊM</a>
|
||
</div>
|
||
<div class="events-widget">
|
||
|
||
<!-- BEGIN Component: events-list -->
|
||
<style>
|
||
.campus-events-widget { background: transparent; padding: 0; font-family: inherit; }
|
||
.campus-events-widget .events-list { list-style: none; margin: 0; padding: 0; }
|
||
.campus-events-widget .teaser-item { padding: 20px 0; border-bottom: 1px solid #e5e5e5; }
|
||
.campus-events-widget .teaser-item:last-child { border-bottom: none; }
|
||
.campus-events-widget .event-wrapper { display: flex; gap: 20px; align-items: flex-start; }
|
||
.campus-events-widget .event-date { display: flex; flex-direction: column; justify-content: center; align-items: center; gap: 0.125rem; padding: 0.25rem; background: #881C1C; width: 2.875rem; height: 3.125rem; box-sizing: border-box; }
|
||
.campus-events-widget .event-date__month { font-size: 1rem; font-weight: 800; line-height: 1.25rem; text-transform: uppercase; text-align: center; color: #fff; }
|
||
.campus-events-widget .event-date__day { font-size: 1rem; font-weight: 800; line-height: 1.25rem; text-transform: uppercase; text-align: center; color: #fff; }
|
||
.campus-events-widget .event-details { flex: 1; position: relative; }
|
||
.campus-events-widget .event-title { font-size: 1rem; font-weight: 800; line-height: 1.25rem; text-transform: uppercase; color: #000; }
|
||
.campus-events-widget .event-title a { color: inherit; text-decoration: none; }
|
||
.campus-events-widget .event-title a:hover { text-decoration: underline; }
|
||
.campus-events-widget .event-time { font-size: 16px; color: #000; margin-bottom: 4px; }
|
||
.campus-events-widget .event-location { font-size: 1rem; font-weight: 400; line-height: 1.5rem; font-style: normal; color: #000; }
|
||
@media (max-width: 768px) {
|
||
.campus-events-widget .event-title { font-size: 0.75rem; }
|
||
.campus-events-widget .event-time { font-size: 0.75rem; }
|
||
.campus-events-widget .event-location { font-size: 0.75rem; }
|
||
.campus-events-widget .event-wrapper { display: flex; flex: 1; padding-right: 10px; align-items: stretch; gap: 12px; border: 1px solid #CCC; }
|
||
.campus-events-widget .event-date { display: flex; padding: 4px 8px; flex-direction: column; justify-content: center; align-items: center; align-self: stretch; background: #881C1C; min-width: 48px; height: auto; }
|
||
.campus-events-widget .event-details { padding: 8px 10px 8px 0; }
|
||
.campus-events-widget .teaser-item { flex: 0 0 279px; display: flex; border: 0px solid #CCC; padding-bottom: 0; }
|
||
.campus-events-widget .events-list { display: flex; gap: 1rem; overflow-x: auto; padding-bottom: 1rem; }
|
||
}
|
||
@media (max-width: 480px) {
|
||
.campus-events-widget .event-wrapper { gap: 10px; }
|
||
.campus-events-widget .event-date__day { font-size: 18px; }
|
||
}
|
||
</style>
|
||
<div class="campus-events-widget">
|
||
<div class="events-list">
|
||
|
||
<div class="teaser-item">
|
||
<div class="event-wrapper">
|
||
<div class="event-date">
|
||
<div class="event-date__month">Jul</div>
|
||
<div class="event-date__day">18</div>
|
||
</div>
|
||
<div class="event-details">
|
||
<div class="event-title">
|
||
<a href="/post/phoi-hop-xuyen-quoc-gia-cuu-cau-be-8-tuoi">Phối hợp xuyên quốc gia cứu cậu bé 8 tuổi</a>
|
||
</div>
|
||
<div class="event-time">07:26 AM</div>
|
||
<div class="event-location">Hội trường Chính</div>
|
||
</div>
|
||
</div>
|
||
</div>
|
||
|
||
<div class="teaser-item">
|
||
<div class="event-wrapper">
|
||
<div class="event-date">
|
||
<div class="event-date__month">Aug</div>
|
||
<div class="event-date__day">07</div>
|
||
</div>
|
||
<div class="event-details">
|
||
<div class="event-title">
|
||
<a href="/post/can-tho-_-ban-tin-tuyen-dung-thang-07-2026">[CẦN THƠ] _ BẢN TIN TUYỂN DỤNG THÁNG 07/2026</a>
|
||
</div>
|
||
<div class="event-time">07:26 AM</div>
|
||
|
||
</div>
|
||
</div>
|
||
</div>
|
||
|
||
<div class="teaser-item">
|
||
<div class="event-wrapper">
|
||
<div class="event-date">
|
||
<div class="event-date__month">Jan</div>
|
||
<div class="event-date__day">14</div>
|
||
</div>
|
||
<div class="event-details">
|
||
<div class="event-title">
|
||
<a href="/post/chay-dua-voi-thoi-gian-cuu-nam-bac-si-xuat-huyet-nao-do-vo-tui-phinh-hon-me-sau">Cứu nam bác sĩ xuất huyết não do vỡ túi phình, hôn mê sâu</a>
|
||
</div>
|
||
<div class="event-time">07:27 AM</div>
|
||
|
||
</div>
|
||
</div>
|
||
</div>
|
||
|
||
</div>
|
||
</div>
|
||
<!-- END Component: events-list -->
|
||
|
||
</div>
|
||
</div>
|
||
</div><!-- Mobile Footer CTA -->
|
||
<div class="news-events-section__footer"><a href="/news/news-events"
|
||
class="news-events-section__cta news-events-section__cta--mobile">Xem Thêm</a></div>
|
||
</div>
|
||
</div>
|
||
</body>
|
||
<!-- END Snippet: block_9_news_features -->
|
||
|
||
|
||
|
||
<!-- 2. Header Block -->
|
||
|
||
|
||
<!-- 3. Paragraph Block -->
|
||
|
||
|
||
<!-- 4. List Block -->
|
||
|
||
|
||
<!-- 5. Image Block -->
|
||
|
||
|
||
<!-- 6. Quote Block -->
|
||
|
||
|
||
<!-- 7. Delimiter Block -->
|
||
|
||
|
||
<!-- 8. Table Block -->
|
||
|
||
|
||
|
||
|
||
<!-- 1. HTML Snippet Block (Custom) -->
|
||
|
||
|
||
<!-- BEGIN Snippet: block_2_livestream -->
|
||
|
||
<!-- BEGIN Component: tabbed-livestream -->
|
||
<style>
|
||
.tabbed-media-content-media-item { width: 100%; aspect-ratio: 16/9; position: relative; display: flex; align-items: center; justify-content: center; background: #000; overflow: hidden; }
|
||
.tabbed-media-content-media-item .f--video-embed { display: none; width: 100%; height: 100%; }
|
||
.tabbed-media-content-media-item .f--video-embed iframe { width: 100%; height: 100%; border: none; }
|
||
.tabbed-media-content-media-item .f--image { width: 100%; height: 100%; position: absolute; top: 0; left: 0; z-index: 5; }
|
||
.tabbed-media-content-media-item .button-play { z-index: 10; }
|
||
</style>
|
||
<div class="cc--component-container cc--tabbed-media-content" style="background-color: var(--color-gray-100);">
|
||
<div class="c--component c--tabbed-media-content">
|
||
<div class="tabbed-media-content-text-col">
|
||
<div data-component-id="umass_base:section-title" class="f--section-title">
|
||
<h2 style="color: var(--color-brand);">LiveStream</h2>
|
||
</div>
|
||
<div data-component-id="umass_base:tabbed-container" data-once="tabbed-container">
|
||
<div class="tab-labels-container" role="tablist">
|
||
<div class="tab-labels-inner">
|
||
|
||
<a href="#tabbed-content-0" class="tab-label link-context-dark" role="tab" aria-selected="false" aria-controls="tabbed-content-0">Tuần 1</a>
|
||
|
||
</div>
|
||
</div>
|
||
<div class="tab-content-container">
|
||
|
||
<div class="tab-content-panel" id="tabbed-content-0" role="tabpanel" aria-live="polite">
|
||
<div class="f--field f--cta-title">
|
||
<h2 style="color: var(--color-black);"> SIS Vì Sức khỏe Cộng đồng kỳ 134 Thoát vị đĩa đệm – Khi nào mới phẫu thuật? </h2>
|
||
</div>
|
||
<div data-component-id="umass_base:description" class="f--description">
|
||
<div style="color:var(--color-black);">Đau lưng, đau cổ, tê tay, tê chân... là những triệu chứng thường gặp của thoát vị đĩa đệm. Tuy nhiên, không phải ai mắc bệnh cũng cần phẫu thuật.
|
||
⚠️ Vậy khi nào nên điều trị bảo tồn? Khi nào cần phẫu thuật? Làm sao để tránh bỏ lỡ "thời điểm vàng" điều trị?
|
||
Cùng lắng nghe những chia sẻ từ các chuyên gia trong chương trình Livestream "S.I.S vì sức khỏe cộng đồng" vào lúc 𝟏𝟗𝐡𝟒𝟓 Thứ Ba, ngày 𝟎𝟕/𝟎𝟕/𝟐𝟎𝟐𝟔.
|
||
📌 Đồng hành và tư vấn trực tiếp cùng quý khán giả là các bác sĩ giàu kinh nghiệm tại Bệnh viện ĐKQT S.I.S Cần Thơ:
|
||
• BS.CKI Nguyễn Quang Hưng, chuyên khoa Ngoại Thần kinh
|
||
• BS.CKI Trương Đan Kha, chuyên khoa Vật lý trị liệu - Phục hồi chức năng
|
||
• ThS.BS Lê Thị Chi Lan, chuyên khoa Ngoại Thần kinh.</div>
|
||
</div>
|
||
<div class="cta-container">
|
||
<div class="f--field f--button">
|
||
<a href="/post/sis-vi-suc-khoe-cong-dong-ky-134" class="button-primary button-context-light " aria-label="Tìm Hiểu Thêm" data-component-id="umass_base:button">
|
||
<span class="button-text"> Tìm Hiểu Thêm </span>
|
||
</a>
|
||
</div>
|
||
</div>
|
||
</div>
|
||
|
||
</div>
|
||
</div>
|
||
</div>
|
||
<div class="tabbed-media-content-media-col">
|
||
|
||
<div class="tabbed-media-content-media-item with-video" data-tab-id="tabbed-content-0">
|
||
<div class="f--field f--image">
|
||
<img src="/uploads/livestream/livestream_tuan1.jpg" data-src="/uploads/livestream/livestream_tuan1.jpg" class="lazyload" alt="Tuần 1" style="width:100%;height:100%;object-fit:cover;">
|
||
</div>
|
||
<div class="f--field f--button" style="position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); z-index: 10;">
|
||
<a href="#" class="button-play button-context-light " aria-label="Play video" data-component-id="umass_base:button">
|
||
<span class="button-icon button-icon-play">
|
||
<svg width="18" height="27" viewBox="0 0 18 27" fill="currentColor" xmlns="http://www.w3.org/2000/svg">
|
||
<path d="M18 13.5L0 0V27L18 13.5Z"></path>
|
||
</svg>
|
||
</span>
|
||
<span class="button-text visually-hidden"> Play </span>
|
||
</a>
|
||
</div>
|
||
<div data-component-id="umass_base:video-embed" class="f--field f--video-embed">
|
||
<iframe title="YouTube video player" src="https://www.youtube.com/embed/j63kT9Bjrb4?si=N5JwIcuRn-iRxkYu&autoplay=1" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share" referrerpolicy="strict-origin-when-cross-origin" allowfullscreen></iframe>
|
||
</div>
|
||
</div>
|
||
|
||
</div>
|
||
</div>
|
||
</div>
|
||
<script>
|
||
document.addEventListener("DOMContentLoaded", function() {
|
||
var tabs = document.querySelectorAll('.tabbed-media-content-media-item[data-tab-id="tabbed-content-0"]');
|
||
if(tabs.length > 0) tabs[0].classList.add('is-active');
|
||
|
||
var panels = document.querySelectorAll('#tabbed-content-0.tab-content-panel');
|
||
if(panels.length > 0) panels[0].classList.add('is-active');
|
||
|
||
var labels = document.querySelectorAll('a.tab-label[aria-controls="tabbed-content-0"]');
|
||
if(labels.length > 0) labels[0].setAttribute('aria-selected', 'true');
|
||
|
||
var allLabels = document.querySelectorAll('.tab-labels-inner .tab-label');
|
||
allLabels.forEach(function(label) {
|
||
label.addEventListener('click', function(e) {
|
||
e.preventDefault();
|
||
allLabels.forEach(function(l) { l.setAttribute('aria-selected', 'false'); });
|
||
this.setAttribute('aria-selected', 'true');
|
||
|
||
var targetId = this.getAttribute('aria-controls');
|
||
document.querySelectorAll('.tab-content-panel').forEach(function(p) { p.classList.remove('is-active'); });
|
||
document.querySelectorAll('.tabbed-media-content-media-item').forEach(function(m) {
|
||
m.classList.remove('is-active');
|
||
var vEmbed = m.querySelector('.f--video-embed');
|
||
if(vEmbed) vEmbed.style.display = 'none';
|
||
var img = m.querySelector('.f--image');
|
||
if(img) img.style.display = 'block';
|
||
var btnContainer = m.querySelector('.f--field.f--button');
|
||
if(btnContainer) btnContainer.style.display = 'block';
|
||
});
|
||
|
||
var targetPanel = document.getElementById(targetId);
|
||
if(targetPanel) targetPanel.classList.add('is-active');
|
||
var targetMedia = document.querySelector('.tabbed-media-content-media-item[data-tab-id="' + targetId + '"]');
|
||
if(targetMedia) targetMedia.classList.add('is-active');
|
||
});
|
||
});
|
||
|
||
var playButtons = document.querySelectorAll('.tabbed-media-content-media-item .button-play');
|
||
playButtons.forEach(function(btn) {
|
||
btn.addEventListener('click', function(e) {
|
||
e.preventDefault();
|
||
var mediaItem = this.closest('.tabbed-media-content-media-item');
|
||
var img = mediaItem.querySelector('.f--image');
|
||
var videoEmbed = mediaItem.querySelector('.f--video-embed');
|
||
var btnContainer = mediaItem.querySelector('.f--field.f--button');
|
||
|
||
if(img) img.style.display = 'none';
|
||
if(btnContainer) btnContainer.style.display = 'none';
|
||
if(videoEmbed) videoEmbed.style.display = 'block';
|
||
});
|
||
});
|
||
});
|
||
</script>
|
||
<!-- END Component: tabbed-livestream -->
|
||
|
||
<!-- END Snippet: block_2_livestream -->
|
||
|
||
|
||
|
||
<!-- 2. Header Block -->
|
||
|
||
|
||
<!-- 3. Paragraph Block -->
|
||
|
||
|
||
<!-- 4. List Block -->
|
||
|
||
|
||
<!-- 5. Image Block -->
|
||
|
||
|
||
<!-- 6. Quote Block -->
|
||
|
||
|
||
<!-- 7. Delimiter Block -->
|
||
|
||
|
||
<!-- 8. Table Block -->
|
||
|
||
|
||
|
||
|
||
<!-- 1. HTML Snippet Block (Custom) -->
|
||
|
||
|
||
<!-- BEGIN Snippet: block_10_education -->
|
||
<body>
|
||
<div class="cc--component-container cc--news-events">
|
||
<div class="c--component c--news-events"><!-- Header -->
|
||
<div class="news-events-row">
|
||
<div class="education-column news-column">
|
||
<div style="display: flex; justify-content: space-between; align-items: baseline; border-bottom: 2px solid var(--color-brand); margin-bottom: 16px;">
|
||
<!-- Thêm flex-grow: 1 vào style của h2 -->
|
||
<h2 class="section-title--news" style="font-size: 2rem; margin: 0; padding-bottom: 4px; border-bottom: unset;">ĐÀO TẠO</h2>
|
||
<a href="/news/education" class="news-events-section__cta news-events-section__cta--desktop" style="color: var(--color-brand); font-weight: 800; font-size: 16px; text-transform: uppercase; text-decoration: none; border-bottom: unset;">XEM THÊM</a>
|
||
</div>
|
||
<div class="news-list" style="padding-right: 15px;">
|
||
|
||
<!-- BEGIN Component: news-grid -->
|
||
|
||
<div class="featured-grid__item">
|
||
<article class="news-card news-card--featured">
|
||
<div class="news-card__image">
|
||
<div>
|
||
<img loading="lazy" src="https://sisvietnam.vn/wp-content/uploads/2026/07/3.7-Chay-dua-voi-thoi-gian-cuu-nam-bac-si-xuat-huyet-nao-do-vo-tui-phinh-hon-me-sau-2-1024x684.jpg" alt="Cứu nam bác sĩ xuất huyết não do vỡ túi phình, hôn mê sâu (Copy)">
|
||
</div>
|
||
</div>
|
||
<div class="news-card__content">
|
||
<div class="featured-grid__category">
|
||
<a href="#">TIN TỨC</a>
|
||
</div>
|
||
<h3 class="news-card__title">
|
||
<a href="/post/cuu-nam-bac-si-xuat-huyet-nao-do-vo-tui-phinh-hon-me-sau-copy" rel="bookmark">
|
||
<span>Cứu nam bác sĩ xuất huyết não do vỡ túi phình, hôn mê sâu (Copy)</span>
|
||
</a>
|
||
</h3>
|
||
<div class="news-card__date">14/07/2026</div>
|
||
</div>
|
||
</article>
|
||
</div>
|
||
|
||
<div class="featured-grid__item">
|
||
<article class="news-card news-card--featured">
|
||
<div class="news-card__image">
|
||
<div>
|
||
<img loading="lazy" src="https://sisvietnam.vn/wp-content/uploads/2026/07/7.4-Dau-dau-chong-mat-suot-20-ngay-cu-ba-u80-phat-hien-khoi-nam-xoang-buom-xam-lan-nen-so-chen-ep-dong-mach-canh-2-1024x649.jpg" alt="Đau đầu chóng mặt suốt 20 ngày, cụ bà u80 phát hiện khối nấm xoang bướm xâm lấn nền sọ, chèn ép động mạch cảnh (Copy) (Copy)">
|
||
</div>
|
||
</div>
|
||
<div class="news-card__content">
|
||
<div class="featured-grid__category">
|
||
<a href="#">TIN TỨC</a>
|
||
</div>
|
||
<h3 class="news-card__title">
|
||
<a href="/post/dau-dau-chong-mat-suot-20-ngay-cu-ba-u80-phat-hien-khoi-nam-xoang-buom-xam-lan-nen-so-chen-ep-dong-mach-canh-copy-copy" rel="bookmark">
|
||
<span>Đau đầu chóng mặt suốt 20 ngày, cụ bà u80 phát hiện khối nấm xoang bướm xâm lấn nền sọ, chèn ép động mạch cảnh (Copy) (Copy)</span>
|
||
</a>
|
||
</h3>
|
||
<div class="news-card__date">14/07/2026</div>
|
||
</div>
|
||
</article>
|
||
</div>
|
||
|
||
<div class="featured-grid__item">
|
||
<article class="news-card news-card--featured">
|
||
<div class="news-card__image">
|
||
<div>
|
||
<img loading="lazy" src="https://sisvietnam.vn/wp-content/uploads/2026/07/7.4-Dau-dau-chong-mat-suot-20-ngay-cu-ba-u80-phat-hien-khoi-nam-xoang-buom-xam-lan-nen-so-chen-ep-dong-mach-canh-2-1024x649.jpg" alt="Đau đầu chóng mặt suốt 20 ngày, cụ bà u80 phát hiện khối nấm xoang bướm xâm lấn nền sọ, chèn ép động mạch cảnh (Copy)">
|
||
</div>
|
||
</div>
|
||
<div class="news-card__content">
|
||
<div class="featured-grid__category">
|
||
<a href="#">TIN TỨC</a>
|
||
</div>
|
||
<h3 class="news-card__title">
|
||
<a href="/post/dau-dau-chong-mat-suot-20-ngay-cu-ba-u80-phat-hien-khoi-nam-xoang-buom-xam-lan-nen-so-chen-ep-dong-mach-canh-copy-1" rel="bookmark">
|
||
<span>Đau đầu chóng mặt suốt 20 ngày, cụ bà u80 phát hiện khối nấm xoang bướm xâm lấn nền sọ, chèn ép động mạch cảnh (Copy)</span>
|
||
</a>
|
||
</h3>
|
||
<div class="news-card__date">14/07/2026</div>
|
||
</div>
|
||
</article>
|
||
</div>
|
||
|
||
<!-- END Component: news-grid -->
|
||
|
||
</div>
|
||
</div>
|
||
</div><!-- Mobile Footer CTA -->
|
||
<div class="news-events-section__footer"><a href="/news/education" class="news-events-section__cta news-events-section__cta--mobile">Xem Thêm</a></div>
|
||
</div>
|
||
</div>
|
||
</body>
|
||
|
||
<!-- END Snippet: block_10_education -->
|
||
|
||
|
||
|
||
<!-- 2. Header Block -->
|
||
|
||
|
||
<!-- 3. Paragraph Block -->
|
||
|
||
|
||
<!-- 4. List Block -->
|
||
|
||
|
||
<!-- 5. Image Block -->
|
||
|
||
|
||
<!-- 6. Quote Block -->
|
||
|
||
|
||
<!-- 7. Delimiter Block -->
|
||
|
||
|
||
<!-- 8. Table Block -->
|
||
|
||
|
||
|
||
|
||
<!-- 1. HTML Snippet Block (Custom) -->
|
||
|
||
|
||
<!-- BEGIN Snippet: block_4_image-link-grid -->
|
||
<body>
|
||
<div class="paragraph paragraph--type--quad-card-grid paragraph--view-mode--default paragraph--quad-card-grid" data-component-id="umass_base:image-link-grid">
|
||
<div class="qcg">
|
||
<div class="qcg__left">
|
||
<h2 class="qcg__title"> Excellence in Action </h2>
|
||
<div class="qcg__description">
|
||
<div>
|
||
<p>UMass Amherst advances academic excellence through research, teaching, and engagement across campus. Students and faculty drive discovery through programs, scholarship, and events that extend beyond the classroom.</p>
|
||
</div>
|
||
</div>
|
||
<div class="qcg__link">
|
||
<a href="https://www.umass.edu/gateway/why-umass/discover-ideas" class="ext" target="_self" aria-label="Discover Ideas Discover Ideas" rel="noopener noreferrer"> Discover Ideas </a>
|
||
</div>
|
||
</div>
|
||
<div class="qcg__right">
|
||
<div class="qcg__grid">
|
||
<div class="qcg__card">
|
||
<div class="paragraph paragraph--type--quad-card-grid-item paragraph--view-mode--default paragraph--quad-card-grid-item qcg-item" data-component-id="umass_base:image-link-grid-item">
|
||
<div class="qcg-item__image">
|
||
<div>
|
||
<article>
|
||
<div>
|
||
<img loading="lazy" srcset="https://www.umass.edu/sites/default/files/styles/4_3_400x300/public/2025-12/FY26UMass_HackUMass_LANDING.jpg?h=854a7be2&itok=ysOMEN8V 400w, https://www.umass.edu/sites/default/files/styles/4_3_800x600/public/2025-12/FY26UMass_HackUMass_LANDING.jpg?h=854a7be2&itok=jtWz1GCX 800w, https://www.umass.edu/sites/default/files/styles/4_3_1600x1200/public/2025-12/FY26UMass_HackUMass_LANDING.jpg?h=854a7be2&itok=xAxf5s8X 1600w, https://www.umass.edu/sites/default/files/styles/4_3_1920x1440/public/2025-12/FY26UMass_HackUMass_LANDING.jpg?h=854a7be2&itok=3yPPf8f1 1920w" sizes="100vw" width="400" height="300" src="/UMass%20Amherst%20_%20UMass%20Amherst_files/FY26UMass_HackUMass_LANDING.jpg" alt="A group of five students lean over laptops in a classroom">
|
||
</div>
|
||
</article>
|
||
</div>
|
||
</div>
|
||
<div class="qcg-item__link">
|
||
<a href="https://www.umass.edu/gateway/umass-stories/hackumass" class="qcg-item__cta" target="_self" aria-label="HackUMass: Code, Collaborations & Big Ideas HackUMass: Code, Collaborations & Big Ideas"> HackUMass: Code, Collaborations & Big Ideas </a>
|
||
</div>
|
||
</div>
|
||
</div>
|
||
<div class="qcg__card">
|
||
<div class="paragraph paragraph--type--quad-card-grid-item paragraph--view-mode--default paragraph--quad-card-grid-item qcg-item" data-component-id="umass_base:image-link-grid-item">
|
||
<div class="qcg-item__image">
|
||
<div>
|
||
<article>
|
||
<div>
|
||
<img loading="lazy" srcset="https://www.umass.edu/sites/default/files/styles/4_3_400x300/public/2025-06/UPC2025__HERO_2000x1125.jpg?h=0f182455&itok=4PUBT11w 400w, https://www.umass.edu/sites/default/files/styles/4_3_800x600/public/2025-06/UPC2025__HERO_2000x1125.jpg?h=0f182455&itok=r72eJsZX 800w, https://www.umass.edu/sites/default/files/styles/4_3_1600x1200/public/2025-06/UPC2025__HERO_2000x1125.jpg?h=0f182455&itok=HXie2chE 1600w, https://www.umass.edu/sites/default/files/styles/4_3_1920x1440/public/2025-06/UPC2025__HERO_2000x1125.jpg?h=0f182455&itok=ufOsI9X8 1920w" sizes="100vw" width="400" height="300" src="/UMass%20Amherst%20_%20UMass%20Amherst_files/UPC2025__HERO_2000x1125.jpg" alt="Tinashe performs at the Spring Concert.">
|
||
</div>
|
||
</article>
|
||
</div>
|
||
</div>
|
||
<div class="qcg-item__link">
|
||
<a href="https://www.umass.edu/gateway/umass-stories/inside-upc" class="qcg-item__cta" target="_self" aria-label="Inside UPC: Student-Led Events With Lasting Impact Inside UPC: Student-Led Events With Lasting Impact"> Inside UPC: Student-Led Events With Lasting Impact </a>
|
||
</div>
|
||
</div>
|
||
</div>
|
||
<div class="qcg__card">
|
||
<div class="paragraph paragraph--type--quad-card-grid-item paragraph--view-mode--default paragraph--quad-card-grid-item qcg-item" data-component-id="umass_base:image-link-grid-item">
|
||
<div class="qcg-item__image">
|
||
<div>
|
||
<article>
|
||
<div>
|
||
<img loading="lazy" srcset="https://www.umass.edu/sites/default/files/styles/4_3_400x300/public/2025-09/FY26_BeTheFuture_WeAreRev_photo4.jpg?h=854a7be2&itok=jVpB7bGa 400w, https://www.umass.edu/sites/default/files/styles/4_3_800x600/public/2025-09/FY26_BeTheFuture_WeAreRev_photo4.jpg?h=854a7be2&itok=CcG3pX7V 800w, https://www.umass.edu/sites/default/files/styles/4_3_1600x1200/public/2025-09/FY26_BeTheFuture_WeAreRev_photo4.jpg?h=854a7be2&itok=mDWs6wTt 1600w, https://www.umass.edu/sites/default/files/styles/4_3_1920x1440/public/2025-09/FY26_BeTheFuture_WeAreRev_photo4.jpg?h=854a7be2&itok=cgBcz7LE 1920w" sizes="100vw" width="400" height="300" src="/UMass%20Amherst%20_%20UMass%20Amherst_files/FY26_BeTheFuture_WeAreRev_photo4.jpg" alt="Two students work with building tools.">
|
||
</div>
|
||
</article>
|
||
</div>
|
||
</div>
|
||
<div class="qcg-item__link">
|
||
<a href="https://www.umass.edu/gateway/umass-stories/changemakers-making" class="qcg-item__cta" target="_self" aria-label="Changemakers in the Making: Be the Future You Want to See Changemakers in the Making: Students Aren't Just Waiting for the Future, They're Making It"> Changemakers in the Making: Be the Future You Want to See </a>
|
||
</div>
|
||
</div>
|
||
</div>
|
||
<div class="qcg__card">
|
||
<div class="paragraph paragraph--type--quad-card-grid-item paragraph--view-mode--default paragraph--quad-card-grid-item qcg-item" data-component-id="umass_base:image-link-grid-item">
|
||
<div class="qcg-item__image">
|
||
<div>
|
||
<article>
|
||
<div>
|
||
<img loading="lazy" srcset="https://www.umass.edu/sites/default/files/styles/4_3_400x300/public/2025-12/2025_Vy_Do_7780_John_Solem_2000x1125.jpg?h=854a7be2&itok=Idf4wkAD 400w, https://www.umass.edu/sites/default/files/styles/4_3_800x600/public/2025-12/2025_Vy_Do_7780_John_Solem_2000x1125.jpg?h=854a7be2&itok=WUqiETKc 800w, https://www.umass.edu/sites/default/files/styles/4_3_1600x1200/public/2025-12/2025_Vy_Do_7780_John_Solem_2000x1125.jpg?h=854a7be2&itok=p7De2fBX 1600w, https://www.umass.edu/sites/default/files/styles/4_3_1920x1440/public/2025-12/2025_Vy_Do_7780_John_Solem_2000x1125.jpg?h=854a7be2&itok=AEX7-hAe 1920w" sizes="100vw" width="400" height="300" src="/UMass%20Amherst%20_%20UMass%20Amherst_files/2025_Vy_Do_7780_John_Solem_2000x1125.jpg" alt="Vy Do in UMas Amherst biomedical engineering lab">
|
||
</div>
|
||
</article>
|
||
</div>
|
||
</div>
|
||
<div class="qcg-item__link">
|
||
<a href="https://www.umass.edu/gateway/research/stories/rising-researchers/biomedical-engineering-nanomedicine-drug-delivery" class="qcg-item__cta" target="_self" aria-label="Biomedical Engineering Research to Advance Drug Delivery Biomedical Engineering Research to Advance Drug Delivery: Vy Do ’26 conducts research to develop nanocarriers for therapeutic genetic materials to treat traumatic brain injuries and other neurological conditions."> Biomedical Engineering Research to Advance Drug Delivery </a>
|
||
</div>
|
||
</div>
|
||
</div>
|
||
</div>
|
||
</div>
|
||
</div>
|
||
</div>
|
||
</body>
|
||
<style>* { box-sizing: border-box; } body {margin: 0;}</style>
|
||
<!-- END Snippet: block_4_image-link-grid -->
|
||
|
||
|
||
|
||
<!-- 2. Header Block -->
|
||
|
||
|
||
<!-- 3. Paragraph Block -->
|
||
|
||
|
||
<!-- 4. List Block -->
|
||
|
||
|
||
<!-- 5. Image Block -->
|
||
|
||
|
||
<!-- 6. Quote Block -->
|
||
|
||
|
||
<!-- 7. Delimiter Block -->
|
||
|
||
|
||
<!-- 8. Table Block -->
|
||
|
||
|
||
|
||
|
||
<!-- 1. HTML Snippet Block (Custom) -->
|
||
|
||
|
||
<!-- BEGIN Snippet: block_5_section-title -->
|
||
<body>
|
||
<div class="cc--component-container cc--card-grid dark">
|
||
<div class="c--component c--card-grid">
|
||
<div class="text-container">
|
||
<div data-component-id="umass_base:section-title" class="f--section-title">
|
||
<h2>Blaze Your Own Trail</h2>
|
||
</div>
|
||
<div data-component-id="umass_base:description" class="f--section-title f--description">
|
||
<p>Discover more than 100 undergraduate majors, minors, and certificates in fields ranging from engineering to public health to literature. You can even design your own major through our individual concentration program. Whatever your path, UMass gives you the freedom to explore and the tools to excel.</p>
|
||
</div>
|
||
</div>
|
||
<div class="f--field f--cards nested">
|
||
<div class="cc--component-container cc--card-grid-card ">
|
||
<div class="c--component c--card-grid-card">
|
||
<div class="f--field f--image">
|
||
<img data-src="https://www.umass.edu/sites/default/files/styles/16_9_320x180/public/2025-09/FY26_BeTheFuture-HERO_professor-with-students.jpg?h=854a7be2&itok=sAJtETQj" class=" lazyloaded" alt="A professor walks with students in the rooftop garden of the Olver Design Building." src="/UMass%20Amherst%20_%20UMass%20Amherst_files/FY26_BeTheFuture-HERO_professor-with-students.jpg">
|
||
</div>
|
||
<div class="text-container">
|
||
<h3 class="ally-focus-within"> Find a Program </h3>
|
||
<div data-component-id="umass_base:description" class="f--description">
|
||
<p>With more than 100 majors, you have the freedom to explore your interests and build an academic path that reflects who you are and where you want to go.</p>
|
||
</div>
|
||
<div class="f--field f--button">
|
||
<a href="https://www.umass.edu/gateway/academics/explore-our-programs" class="button-text-link button-context-dark " aria-label="Read more About Find a Program" target="_self" data-component-id="umass_base:button">
|
||
<span class="button-text"> Read more </span>
|
||
</a>
|
||
</div>
|
||
</div>
|
||
</div>
|
||
</div>
|
||
<div class="cc--component-container cc--card-grid-card ">
|
||
<div class="c--component c--card-grid-card">
|
||
<div class="f--field f--image">
|
||
<img data-src="https://www.umass.edu/sites/default/files/styles/16_9_320x180/public/2025-11/UMass%20Amherst%20Drone%20Campus.jpeg?h=c673cd1c&itok=SB-3t1IF" class=" lazyloaded" alt="UMass Amherst Drone Campus" src="/UMass%20Amherst%20_%20UMass%20Amherst_files/UMass Amherst Drone Campus.jpeg">
|
||
</div>
|
||
<div class="text-container">
|
||
<h3 class="ally-focus-within"> Design Your Own Major </h3>
|
||
<div data-component-id="umass_base:description" class="f--description">
|
||
<p>Through the Bachelor’s Degree with Individual Concentration (BDIC) Program, students can create a personalized major, blending courses across fields to explore passions beyond traditional academic boundaries.</p>
|
||
</div>
|
||
<div class="f--field f--button">
|
||
<a href="https://www.umass.edu/gateway/umass-stories/design-your-own-major" class="button-text-link button-context-dark " aria-label="Read more About Design Your Own Major" target="_self" data-component-id="umass_base:button">
|
||
<span class="button-text"> Read more </span>
|
||
</a>
|
||
</div>
|
||
</div>
|
||
</div>
|
||
</div>
|
||
<div class="cc--component-container cc--card-grid-card ">
|
||
<div class="c--component c--card-grid-card">
|
||
<div class="f--field f--image">
|
||
<img data-src="https://www.umass.edu/sites/default/files/styles/16_9_320x180/public/2024-01/FY23-Study-abroad-LANDING-HERO-London-SA_0.jpg?h=854a7be2&itok=KyMO_bgM" class=" lazyloaded" alt="UMass Amherst Study Abroad London" src="/UMass%20Amherst%20_%20UMass%20Amherst_files/FY23-Study-abroad-LANDING-HERO-London-SA_0.jpg">
|
||
</div>
|
||
<div class="text-container">
|
||
<h3 class="ally-focus-within"> Study Abroad </h3>
|
||
<div data-component-id="umass_base:description" class="f--description">
|
||
<p>Global learning opportunities immerse students in new cultures, expanding their perspectives and preparing them to thrive in a connected world.</p>
|
||
</div>
|
||
<div class="f--field f--button">
|
||
<a href="https://www.umass.edu/gateway/umass-stories/study-abroad-umass" class="button-text-link button-context-dark " aria-label="Read more About Study Abroad" target="_self" data-component-id="umass_base:button">
|
||
<span class="button-text"> Read more </span>
|
||
</a>
|
||
</div>
|
||
</div>
|
||
</div>
|
||
</div>
|
||
</div>
|
||
</div>
|
||
</div>
|
||
</body>
|
||
<style>* { box-sizing: border-box; } body {margin: 0;}</style>
|
||
<!-- END Snippet: block_5_section-title -->
|
||
|
||
|
||
|
||
<!-- 2. Header Block -->
|
||
|
||
|
||
<!-- 3. Paragraph Block -->
|
||
|
||
|
||
<!-- 4. List Block -->
|
||
|
||
|
||
<!-- 5. Image Block -->
|
||
|
||
|
||
<!-- 6. Quote Block -->
|
||
|
||
|
||
<!-- 7. Delimiter Block -->
|
||
|
||
|
||
<!-- 8. Table Block -->
|
||
|
||
|
||
|
||
|
||
<!-- 1. HTML Snippet Block (Custom) -->
|
||
|
||
|
||
<!-- BEGIN Snippet: block_6_block-multiple-ctas -->
|
||
<body>
|
||
<div data-component-id="umass_base:block-multiple-ctas" data-background="solid" data-link-style="buttons" data-layout-variant="default">
|
||
<div class="container">
|
||
<div class="text-container">
|
||
<div data-component-id="umass_base:section-title" class="f--section-title">
|
||
<h2>APPLY TODAY</h2>
|
||
</div>
|
||
</div>
|
||
<div class="links-container">
|
||
<div class="f--field f--button">
|
||
<a href="https://www.umass.edu/admissions/first-year-students" class="button-primary button-context-light " aria-label="First Year Apply to UMass Undergraduate" target="_self" data-component-id="umass_base:button">
|
||
<span class="button-text"> First Year </span>
|
||
</a>
|
||
</div>
|
||
<div class="f--field f--button">
|
||
<a href="https://www.umass.edu/admissions/transfer-students" class="button-primary button-context-light " aria-label="Transfer Apply to UMass as as Transfer Student" target="_self" data-component-id="umass_base:button">
|
||
<span class="button-text"> Transfer </span>
|
||
</a>
|
||
</div>
|
||
<div class="f--field f--button">
|
||
<a href="https://www.umass.edu/admissions/undergraduate-admissions/apply/international-students" class="button-primary button-context-light " aria-label="International Apply to UMass Internationally" target="_self" data-component-id="umass_base:button">
|
||
<span class="button-text"> International </span>
|
||
</a>
|
||
</div>
|
||
<div class="f--field f--button">
|
||
<a href="https://www.umass.edu/graduate/apply" class="button-primary button-context-light " aria-label="Graduate School Apply to UMass Graduate School" target="_self" data-component-id="umass_base:button">
|
||
<span class="button-text"> Graduate School </span>
|
||
</a>
|
||
</div>
|
||
</div>
|
||
</div>
|
||
</div>
|
||
</body>
|
||
<style>* { box-sizing: border-box; } body {margin: 0;}</style>
|
||
<!-- END Snippet: block_6_block-multiple-ctas -->
|
||
|
||
|
||
|
||
<!-- 2. Header Block -->
|
||
|
||
|
||
<!-- 3. Paragraph Block -->
|
||
|
||
|
||
<!-- 4. List Block -->
|
||
|
||
|
||
<!-- 5. Image Block -->
|
||
|
||
|
||
<!-- 6. Quote Block -->
|
||
|
||
|
||
<!-- 7. Delimiter Block -->
|
||
|
||
|
||
<!-- 8. Table Block -->
|
||
|
||
|
||
|
||
|
||
<!-- 1. HTML Snippet Block (Custom) -->
|
||
|
||
|
||
<!-- BEGIN Snippet: block_7_block-multiple-ctas -->
|
||
<body>
|
||
<div data-component-id="umass_base:block-multiple-ctas" data-background="solid" data-color="gray" data-layout-variant="tabbed">
|
||
<div class="container">
|
||
<div class="text-container">
|
||
<div data-component-id="umass_base:section-title" class="f--section-title">
|
||
<h2>I'm Looking For...</h2>
|
||
</div>
|
||
</div>
|
||
<div class="links-container">
|
||
<div data-component-id="umass_base:tabbed-container" data-color="gray" data-once="tabbed-container">
|
||
<div class="tab-labels-container" role="tablist">
|
||
<div class="tab-labels-inner">
|
||
<a href="https://www.umass.edu/#tabbed-content-prospective-students" class="tab-label link-context-light" role="tab" aria-selected="true" aria-controls="tabbed-content-prospective-students">Prospective Students</a>
|
||
<a href="https://www.umass.edu/#tabbed-content-current-students" class="tab-label link-context-light" role="tab" aria-selected="false" aria-controls="tabbed-content-current-students">Current Students</a>
|
||
<a href="https://www.umass.edu/#tabbed-content-parents--families" class="tab-label link-context-light" role="tab" aria-selected="false" aria-controls="tabbed-content-parents--families">Parents & Families</a>
|
||
<a href="https://www.umass.edu/#tabbed-content-faculty--staff" class="tab-label link-context-light" role="tab" aria-selected="false" aria-controls="tabbed-content-faculty--staff">Faculty & Staff</a>
|
||
</div>
|
||
</div>
|
||
<div class="tab-content-container">
|
||
<div class="tab-content-panel is-active" id="tabbed-content-prospective-students" role="tabpanel" aria-live="polite">
|
||
<div class="tabbed-links-container">
|
||
<div class="f--field f--button">
|
||
<a href="https://www.umass.edu/admissions/undergraduate-admissions/visit" class="button-text-link button-context-light " aria-label="Visit Campus" target="_self" data-component-id="umass_base:button">
|
||
<span class="button-text"> Visit Campus </span>
|
||
</a>
|
||
</div>
|
||
<div class="f--field f--button">
|
||
<a href="https://www.umass.edu/admissions/undergraduate-admissions" class="button-text-link button-context-light " aria-label="Apply as a First-Year Student" target="_self" data-component-id="umass_base:button">
|
||
<span class="button-text"> Apply as a First-Year Student </span>
|
||
</a>
|
||
</div>
|
||
<div class="f--field f--button">
|
||
<a href="https://www.umass.edu/gateway/academics/explore-our-programs?field_level_of_study=36&field_degree_type=All&field_delivery=All&field_area_of_interest=All&field_school=All&sort_by=title" class="button-text-link button-context-light " aria-label="Majors & Minors" target="_self" data-component-id="umass_base:button">
|
||
<span class="button-text"> Majors & Minors </span>
|
||
</a>
|
||
</div>
|
||
<div class="f--field f--button">
|
||
<a href="https://www.umass.edu/admissions/transfer-students" class="button-text-link button-context-light " aria-label="Apply as a Transfer Student" target="_self" data-component-id="umass_base:button">
|
||
<span class="button-text"> Apply as a Transfer Student </span>
|
||
</a>
|
||
</div>
|
||
<div class="f--field f--button">
|
||
<a href="https://www.umass.edu/graduate/apply" class="button-text-link button-context-light " aria-label="Apply as a Graduate Student" target="_self" data-component-id="umass_base:button">
|
||
<span class="button-text"> Apply as a Graduate Student </span>
|
||
</a>
|
||
</div>
|
||
<div class="f--field f--button">
|
||
<a href="https://www.umass.edu/admissions/important-dates-deadlines" class="button-text-link button-context-light " aria-label="Important Dates & Deadlines" target="_self" data-component-id="umass_base:button">
|
||
<span class="button-text"> Important Dates & Deadlines </span>
|
||
</a>
|
||
</div>
|
||
<div class="f--field f--button">
|
||
<a href="https://www.umass.edu/financialaid/undergraduate-costs" class="button-text-link button-context-light " aria-label="Tuition & Costs" target="_self" data-component-id="umass_base:button">
|
||
<span class="button-text"> Tuition & Costs </span>
|
||
</a>
|
||
</div>
|
||
<div class="f--field f--button">
|
||
<a href="https://www.umass.edu/financialaid/undergraduate" class="button-text-link button-context-light " aria-label="Financial Aid" target="_self" data-component-id="umass_base:button">
|
||
<span class="button-text"> Financial Aid </span>
|
||
</a>
|
||
</div>
|
||
</div>
|
||
</div>
|
||
<div class="tab-content-panel" id="tabbed-content-current-students" role="tabpanel" aria-live="polite">
|
||
<div class="tabbed-links-container">
|
||
<div class="f--field f--button">
|
||
<a href="https://www.spire.umass.edu/" class="button-text-link button-context-light " aria-label="SPIRE" target="_self" data-component-id="umass_base:button">
|
||
<span class="button-text"> SPIRE </span>
|
||
</a>
|
||
</div>
|
||
<div class="f--field f--button">
|
||
<a href="https://www.umass.edu/it/canvas" class="button-text-link button-context-light " aria-label="Canvas" target="_self" data-component-id="umass_base:button">
|
||
<span class="button-text"> Canvas </span>
|
||
</a>
|
||
</div>
|
||
<div class="f--field f--button">
|
||
<a href="https://www.umass.edu/registrar/academic-calendar" class="button-text-link button-context-light " aria-label="Academic Calendar" target="_self" data-component-id="umass_base:button">
|
||
<span class="button-text"> Academic Calendar </span>
|
||
</a>
|
||
</div>
|
||
<div class="f--field f--button">
|
||
<a href="https://www.umass.edu/financialaid/student-employment" class="button-text-link button-context-light " aria-label="Student Jobs" target="_self" data-component-id="umass_base:button">
|
||
<span class="button-text"> Student Jobs </span>
|
||
</a>
|
||
</div>
|
||
<div class="f--field f--button">
|
||
<a href="https://www.umass.edu/gateway/contact-us" class="button-text-link button-context-light " aria-label="Contact List" target="_self" data-component-id="umass_base:button">
|
||
<span class="button-text"> Contact List </span>
|
||
</a>
|
||
</div>
|
||
<div class="f--field f--button">
|
||
<a href="https://www.umass.edu/bursar/" class="button-text-link button-context-light " aria-label="Bursar's Office" target="_self" data-component-id="umass_base:button">
|
||
<span class="button-text"> Bursar's Office </span>
|
||
</a>
|
||
</div>
|
||
<div class="f--field f--button">
|
||
<a href="https://www.umass.edu/student-life/live-on-campus" class="button-text-link button-context-light " aria-label="Residential Life" target="_self" data-component-id="umass_base:button">
|
||
<span class="button-text"> Residential Life </span>
|
||
</a>
|
||
</div>
|
||
<div class="f--field f--button">
|
||
<a href="https://www.umass.edu/it/it-guide-students" class="button-text-link button-context-light " aria-label="Technology Support" target="_self" data-component-id="umass_base:button">
|
||
<span class="button-text"> Technology Support </span>
|
||
</a>
|
||
</div>
|
||
</div>
|
||
</div>
|
||
<div class="tab-content-panel" id="tabbed-content-parents--families" role="tabpanel" aria-live="polite">
|
||
<div class="tabbed-links-container">
|
||
<div class="f--field f--button">
|
||
<a href="https://www.umass.edu/registrar/academic-calendar" class="button-text-link button-context-light " aria-label="Academic Calendar" target="_self" data-component-id="umass_base:button">
|
||
<span class="button-text"> Academic Calendar </span>
|
||
</a>
|
||
</div>
|
||
<div class="f--field f--button">
|
||
<a href="https://www.umass.edu/admissions/visit/visitor-info" class="button-text-link button-context-light " aria-label="Campus Maps" target="_self" data-component-id="umass_base:button">
|
||
<span class="button-text"> Campus Maps </span>
|
||
</a>
|
||
</div>
|
||
<div class="f--field f--button">
|
||
<a href="https://events.umass.edu/" class="button-text-link button-context-light " aria-label="Campus Events" target="_self" data-component-id="umass_base:button">
|
||
<span class="button-text"> Campus Events </span>
|
||
</a>
|
||
</div>
|
||
<div class="f--field f--button">
|
||
<a href="https://www.umass.edu/new-student/family-ready-u" class="button-text-link button-context-light " aria-label="New Families" target="_self" data-component-id="umass_base:button">
|
||
<span class="button-text"> New Families </span>
|
||
</a>
|
||
</div>
|
||
<div class="f--field f--button">
|
||
<a href="https://www.umass.edu/new-student/family-programs" class="button-text-link button-context-light " aria-label="Family Programs" target="_self" data-component-id="umass_base:button">
|
||
<span class="button-text"> Family Programs </span>
|
||
</a>
|
||
</div>
|
||
<div class="f--field f--button">
|
||
<a href="https://www.umass.edu/gateway/contact-us" class="button-text-link button-context-light " aria-label="Contact List" target="_self" data-component-id="umass_base:button">
|
||
<span class="button-text"> Contact List </span>
|
||
</a>
|
||
</div>
|
||
<div class="f--field f--button">
|
||
<a href="https://www.umass.edu/bursar/" class="button-text-link button-context-light " aria-label="Bursar's Office" target="_self" data-component-id="umass_base:button">
|
||
<span class="button-text"> Bursar's Office </span>
|
||
</a>
|
||
</div>
|
||
<div class="f--field f--button">
|
||
<a href="https://www.umass.edu/financialaid/undergraduate" class="button-text-link button-context-light " aria-label="Financial Aid" target="_self" data-component-id="umass_base:button">
|
||
<span class="button-text"> Financial Aid </span>
|
||
</a>
|
||
</div>
|
||
</div>
|
||
</div>
|
||
<div class="tab-content-panel" id="tabbed-content-faculty--staff" role="tabpanel" aria-live="polite">
|
||
<div class="tabbed-links-container">
|
||
<div class="f--field f--button">
|
||
<a href="https://www.spire.umass.edu/" class="button-text-link button-context-light " aria-label="SPIRE" target="_self" data-component-id="umass_base:button">
|
||
<span class="button-text"> SPIRE </span>
|
||
</a>
|
||
</div>
|
||
<div class="f--field f--button">
|
||
<a href="https://www.umass.edu/it/canvas" class="button-text-link button-context-light " aria-label="Canvas" target="_self" data-component-id="umass_base:button">
|
||
<span class="button-text"> Canvas </span>
|
||
</a>
|
||
</div>
|
||
<div class="f--field f--button">
|
||
<a href="https://www.umass.edu/peoplefinder/" class="button-text-link button-context-light " aria-label="People Finder" target="_self" data-component-id="umass_base:button">
|
||
<span class="button-text"> People Finder </span>
|
||
</a>
|
||
</div>
|
||
<div class="f--field f--button">
|
||
<a href="https://www.umass.edu/gateway/contact-us" class="button-text-link button-context-light " aria-label="Contact List" target="_self" data-component-id="umass_base:button">
|
||
<span class="button-text"> Contact List </span>
|
||
</a>
|
||
</div>
|
||
<div class="f--field f--button">
|
||
<a href="https://hr-direct.hcm.umasscs.net/psc/hcm/EMPLOYEE/HRMS/c/NUI_FRAMEWORK.PT_LANDINGPAGE.GBL" class="button-text-link button-context-light ext" aria-label="HR Direct" target="_self" data-component-id="umass_base:button" data-extlink="">
|
||
<span class="button-text"> HR Direct </span>
|
||
<svg focusable="false" width="1em" height="1em" class="ext" data-extlink-placement="append" aria-label="(link is external)" viewBox="0 0 80 40" role="img" aria-hidden="false">
|
||
<title>(link is external)</title>
|
||
<path d="M48 26c-1.1 0-2 0.9-2 2v26H10V18h26c1.1 0 2-0.9 2-2s-0.9-2-2-2H8c-1.1 0-2 0.9-2 2v40c0 1.1 0.9 2 2 2h40c1.1 0 2-0.9 2-2V28C50 26.9 49.1 26 48 26z"></path>
|
||
<path d="M56 6H44c-1.1 0-2 0.9-2 2s0.9 2 2 2h7.2L30.6 30.6c-0.8 0.8-0.8 2 0 2.8C31 33.8 31.5 34 32 34s1-0.2 1.4-0.6L54 12.8V20c0 1.1 0.9 2 2 2s2-0.9 2-2V8C58 6.9 57.1 6 56 6z"></path>
|
||
</svg>
|
||
</a>
|
||
</div>
|
||
<div class="f--field f--button">
|
||
<a href="https://www.umass.edu/hr/" class="button-text-link button-context-light " aria-label="Human Resources" target="_self" data-component-id="umass_base:button">
|
||
<span class="button-text"> Human Resources </span>
|
||
</a>
|
||
</div>
|
||
<div class="f--field f--button">
|
||
<a href="https://www.umass.edu/hr/careers" class="button-text-link button-context-light " aria-label="Career Opportunities" target="_self" data-component-id="umass_base:button">
|
||
<span class="button-text"> Career Opportunities </span>
|
||
</a>
|
||
</div>
|
||
<div class="f--field f--button">
|
||
<a href="https://www.umass.edu/it/email" class="button-text-link button-context-light " aria-label="Email Support" target="_self" data-component-id="umass_base:button">
|
||
<span class="button-text"> Email Support </span>
|
||
</a>
|
||
</div>
|
||
</div>
|
||
</div>
|
||
</div>
|
||
</div>
|
||
</div>
|
||
</div>
|
||
</div>
|
||
</body>
|
||
<style>* { box-sizing: border-box; } body {margin: 0;}</style>
|
||
<!-- END Snippet: block_7_block-multiple-ctas -->
|
||
|
||
|
||
|
||
<!-- 2. Header Block -->
|
||
|
||
|
||
<!-- 3. Paragraph Block -->
|
||
|
||
|
||
<!-- 4. List Block -->
|
||
|
||
|
||
<!-- 5. Image Block -->
|
||
|
||
|
||
<!-- 6. Quote Block -->
|
||
|
||
|
||
<!-- 7. Delimiter Block -->
|
||
|
||
|
||
<!-- 8. Table Block -->
|
||
|
||
|
||
|
||
|
||
<!-- 1. HTML Snippet Block (Custom) -->
|
||
|
||
|
||
<!-- BEGIN Snippet: block_8 -->
|
||
<body>
|
||
<div class="cc--component-container cc--spacer ">
|
||
<div class="c--component c--spacer"></div>
|
||
</div>
|
||
</body>
|
||
<style>* { box-sizing: border-box; } body {margin: 0;}</style>
|
||
<!-- END Snippet: block_8 -->
|
||
|
||
|
||
|
||
<!-- 2. Header Block -->
|
||
|
||
|
||
<!-- 3. Paragraph Block -->
|
||
|
||
|
||
<!-- 4. List Block -->
|
||
|
||
|
||
<!-- 5. Image Block -->
|
||
|
||
|
||
<!-- 6. Quote Block -->
|
||
|
||
|
||
<!-- 7. Delimiter Block -->
|
||
|
||
|
||
<!-- 8. Table Block -->
|
||
|
||
|
||
|
||
</div>
|
||
|
||
</div>
|
||
</div>
|
||
</div>
|
||
</div>
|
||
</main>
|
||
<!-- Include Footer Fragment -->
|
||
<footer>
|
||
<footer id="l--main-footer" class="site-footer">
|
||
<h2 class="visually-hidden">Site Footer</h2>
|
||
<div class="region region-footer r--region r--footer">
|
||
<div class="lc--layout-container lc--full">
|
||
<div class="l--layout l--full">
|
||
<section class="cc-component-container cc--footer" aria-label="Site Footer">
|
||
<div class="c--component c--footer">
|
||
<div class="footer-top">
|
||
<div class="branding-container">
|
||
<div id="block-footerbranding" class="block block-fixed-block-content block-fixed-block-contentfooter-branding cc--component-container cc--footer-branding">
|
||
<div class="c--component c--footer-branding">
|
||
<a class="logo" href="/" aria-label="Sisvietnamvn">
|
||
<div>
|
||
<img src="/theme-assets/umass/images/logo.png" alt="Sisvietnamvn" style="height: 180px ; width: auto;" />
|
||
</div>
|
||
</a>
|
||
</div>
|
||
</div>
|
||
<div id="block-footersocial" class="block block-fixed-block-content block-fixed-block-contentfooter-social cc--component-container cc--footer-social">
|
||
<div class="c--component c--footer-social">
|
||
<nav aria-label="UMass Social Media Links">
|
||
<div>
|
||
<nav aria-label="Social media links">
|
||
<ul class="social-media-links--platforms platforms">
|
||
<li>
|
||
<a href="https://www.facebook.com/UMassAmherst/" class="ext" target="_blank" rel="noopener noreferrer" aria-label="Facebook (opens in new window)">
|
||
<svg height="16" viewBox="0 0 16 16" width="16" aria-hidden="true" focusable="false">
|
||
<path d="m19.9593333 5h-14.0853333c-.48269687 0-.874.39130313-.874.874v14.0853333c0 .4826969.39130313.874.874.874h7.5835333v-6.1230666h-2.0564333v-2.3965334h2.0564333v-1.7625666c0-2.04503337 1.2489334-3.15843337 3.0735667-3.15843337.6158056-.00219435 1.23127.02930829 1.8436333.09436667v2.13623333h-1.2616c-.9899 0-1.1811666.47119997-1.1811666 1.16343337v1.5263333h2.3731l-.3090667 2.3965333h-2.0640333v6.1237h4.0273666c.4826969 0 .874-.3913031.874-.874v-14.0853333c0-.48269687-.3913031-.874-.874-.874z" fill="#fff" fill-rule="evenodd" transform="translate(-5 -5)"></path>
|
||
</svg>
|
||
<span class="visually-hidden">Facebook</span>
|
||
</a>
|
||
</li>
|
||
<li>
|
||
<a href="https://twitter.com/UMassAmherst" class="ext" target="_blank" rel="noopener noreferrer" aria-label="X (formerly Twitter) (opens in new window)">
|
||
<svg style="fill:#FFFFFF;" width="24" height="24" y="0px" x="0px" viewBox="0 -2 50 50" aria-hidden="true" focusable="false">
|
||
<path d="M 5.9199219 6 L 20.582031 27.375 L 6.2304688 44 L 9.4101562 44 L 21.986328 29.421875 L 31.986328 44 L 44 44 L 28.681641 21.669922 L 42.199219 6 L 39.029297 6 L 27.275391 19.617188 L 17.933594 6 L 5.9199219 6 z M 9.7167969 8 L 16.880859 8 L 40.203125 42 L 33.039062 42 L 9.7167969 8 z"></path>
|
||
</svg>
|
||
<span class="visually-hidden">X (formerly Twitter)</span>
|
||
</a>
|
||
</li>
|
||
<li>
|
||
<a href="https://www.youtube.com/user/UMass" class="ext" target="_blank" rel="noopener noreferrer" aria-label="YouTube (opens in new window)">
|
||
<svg height="15" viewBox="0 0 23 15" width="23" aria-hidden="true" focusable="false">
|
||
<path d="m22.935049 8.18627451s-.2389706-1.43382353-.8762255-2.07107843c-.7965686-.87622549-1.752451-.87622549-2.1507353-.87622549-2.9473039-.23897059-7.4877451-.23897059-7.4877451-.23897059s-4.54044114 0-7.48774506.23897059c-.47794118 0-1.35416667 0-2.23039216.87622549-.6372549.6372549-.79656863 2.07107843-.79656863 2.07107843s-.23897058 1.67279412-.23897058 3.42524509v1.5931373c0 1.6727941.23897058 3.4252451.23897058 3.4252451s.23897059 1.4338235.8762255 2.0710784c.79656862.8762255 1.9117647.7965686 2.38970588.8762255 1.75245098.1593137 7.32843137.2389706 7.32843137.2389706s4.5404412 0 7.567402-.2389706c.3982843-.0796569 1.3541666-.0796569 2.1507353-.8762255.6372549-.6372549.8762254-2.0710784.8762254-2.0710784s.2389706-1.6727942.2389706-3.4252451v-1.5931373c-.1593137-1.75245097-.3982843-3.42524509-.3982843-3.42524509zm-12.745098 7.16911769v-5.97426475l5.7352941 2.86764705z" fill="#fff" fill-rule="evenodd" transform="translate(-1 -5)"></path>
|
||
</svg>
|
||
<span class="visually-hidden">YouTube</span>
|
||
</a>
|
||
</li>
|
||
<li>
|
||
<a href="https://www.instagram.com/umass/" class="ext" target="_blank" rel="noopener noreferrer" aria-label="Instagram (opens in new window)">
|
||
<svg height="16" viewBox="0 0 16 16" width="16" aria-hidden="true" focusable="false">
|
||
<path d="m12.9166667 5c-2.1666667 0-2.4166667 0-3.25000003.08333333-.83333334 0-1.41666667.16666667-1.91666667.33333334-.5.16666666-1 .5-1.41666667.91666666-.41666666.41666667-.75.91666667-.91666666 1.41666667-.16666667.5-.33333334 1.08333333-.33333334 1.91666667-.08333333.83333333-.08333333 1.08333333-.08333333 3.25000003 0 2.1666666 0 2.4166666.08333333 3.25 0 .8333333.16666667 1.4166666.33333334 1.9166666.16666666.5.5 1 .91666666 1.4166667.41666667.4166667.91666667.75 1.41666667.9166667.5.1666666 1.08333333.3333333 1.91666667.3333333.83333333 0 1.08333333.0833333 3.25000003.0833333 2.1666666 0 2.4166666 0 3.25-.0833333.8333333 0 1.4166666-.1666667 1.9166666-.3333333.5-.1666667 1-.5 1.4166667-.9166667s.75-.9166667.9166667-1.4166667c.1666666-.5.3333333-1.0833333.3333333-1.9166666 0-.8333334.0833333-1.0833334.0833333-3.25 0-2.1666667 0-2.4166667-.0833333-3.25000003 0-.83333334-.1666667-1.41666667-.3333333-1.91666667-.1666667-.5-.5-1-.9166667-1.41666667-.4166667-.41666666-.9166667-.75-1.4166667-.91666666-.5-.16666667-1.0833333-.33333334-1.9166666-.33333334-.8333334-.08333333-1.0833334-.08333333-3.25-.08333333m0 1.41666667c2.0833333 0 2.3333333 0 3.1666666.08333333.75 0 1.1666667.16666667 1.5.25.3333334.16666667.6666667.33333333.9166667.58333333s.4166667.58333334.5833333.91666667c.0833334.25.25.66666667.25 1.5 0 .8333333.0833334 1.0833333.0833334 3.25 0 2.0833333 0 2.3333333-.0833334 3.1666667 0 .75-.1666666 1.1666666-.25 1.5-.1666666.3333333-.3333333.6666666-.5833333.9166666s-.5.4166667-.9166667.5833334c-.25.0833333-.6666666.25-1.5.25-.8333333 0-1.0833333.0833333-3.1666666.0833333-2.0833334 0-2.3333334 0-3.1666667-.0833333-.75 0-1.16666667-.1666667-1.5-.25-.33333333-.1666667-.66666667-.3333334-.91666667-.5833334s-.41666666-.5833333-.58333333-.9166666c-.08333333-.25-.25-.6666667-.25-1.5 0-.8333334-.08333333-1.0833334-.08333333-3.1666667s0-2.3333333.08333333-3.25c0-.75.16666667-1.16666667.25-1.5.16666667-.33333333.33333333-.66666667.58333333-.91666667s.5-.41666666.91666667-.58333333c.25-.08333333.66666667-.25 1.5-.25.8333333-.08333333 1.0833333-.08333333 3.1666667-.08333333m0 9.16666663c-1.4166667 0-2.6666667-1.1666666-2.6666667-2.6666666s1.1666667-2.6666667 2.6666667-2.6666667 2.6666666 1.1666667 2.6666666 2.6666667-1.25 2.6666666-2.6666666 2.6666666m0-6.74999997c-2.25 0-4.08333337 1.83333337-4.08333337 4.08333337s1.83333337 4.0833333 4.08333337 4.0833333 4.0833333-1.8333333 4.0833333-4.0833333-1.8333333-4.08333337-4.0833333-4.08333337m5.1666666-.16666666c0 .5-.4166666.91666666-.9166666.91666666s-.9166667-.41666666-.9166667-.91666666.4166667-.91666667.9166667-.91666667.9166666.41666667.9166666.91666667" fill="#fff" fill-rule="evenodd" transform="translate(-5 -5)"></path>
|
||
</svg>
|
||
<span class="visually-hidden">Instagram</span>
|
||
</a>
|
||
</li>
|
||
<li>
|
||
<a href="https://www.linkedin.com/school/umassamherst/" class="ext" target="_blank" rel="noopener noreferrer" aria-label="LinkedIn (opens in new window)">
|
||
<svg height="16" viewBox="0 0 16 16" width="16" aria-hidden="true" focusable="false">
|
||
<path d="m20.8333333 17.8517316c0 1.6450216-1.3365801 2.9816017-2.9816017 2.9816017h-9.87012987c-1.64502164 0-2.98160173-1.3365801-2.98160173-2.9816017v-9.87012987c0-1.64502164 1.33658009-2.98160173 2.98160173-2.98160173h9.87012987c1.6450216 0 2.9816017 1.33658009 2.9816017 2.98160173zm-12.1320346-10.17857143c-.82251082 0-1.33658009.51406927-1.33658009 1.23376624-.10281385.71969697.41125542 1.23376619 1.23376624 1.23376619.82251082 0 1.33658009-.51406922 1.33658009-1.23376619s-.51406927-1.23376624-1.23376624-1.23376624zm1.13095238 10.58982683v-7.1969697h-2.36471861v7.1969697zm8.53354982 0v-4.1125541c0-2.1590909-1.1309524-3.1872294-2.7759741-3.1872294-1.2337662 0-1.7478355.7196969-2.056277 1.2337662v-1.0281385h-2.3647186v7.1969697h2.3647186v-4.1125541c0-.2056278 0-.4112555.1028138-.6168832.1028139-.4112554.5140693-.8225108 1.2337663-.8225108.8225108 0 1.2337662.6168831 1.2337662 1.6450217v3.8041125z" fill="#fff" fill-rule="evenodd" transform="translate(-5 -5)"></path>
|
||
</svg>
|
||
<span class="visually-hidden">LinkedIn</span>
|
||
</a>
|
||
</li>
|
||
<li>
|
||
<a href="https://www.snapchat.com/add/umassamherst" class="ext" target="_blank" rel="noopener noreferrer" aria-label="Snapchat (opens in new window)">
|
||
<svg height="17" viewBox="0 0 18 17" width="18" aria-hidden="true" focusable="false">
|
||
<path d="m12.8333333 20.3333333c-.0833333 0-.0833333 0-.1666666 0h-.0833334c-1.0833333 0-1.6666666-.3333333-2.25-.75-.41666663-.3333333-.74999997-.5833333-1.16666663-.5833333-.25 0-.41666667-.0833333-.66666667-.0833333-.33333333 0-.66666667.0833333-.91666667.0833333-.16666666 0-.33333333.0833333-.41666666.0833333-.33333334 0-.5-.25-.5-.4166666 0-.1666667-.08333334-.25-.08333334-.4166667 0-.0833333-.08333333-.25-.08333333-.3333333-1.33333333-.25-2.08333333-.5-2.25-1-.08333333 0-.08333333-.0833334-.08333333-.1666667 0-.25.16666666-.4166667.41666666-.5 2.25-.3333333 3.33333334-2.75 3.33333334-2.8333333.08333333-.25.16666666-.4166667.08333333-.5833334-.08333333-.1666666-.58333333-.3333333-.91666667-.4166666-.08333333 0-.16666666-.0833334-.25-.0833334-.83333333-.3333333-1-.75-.91666666-1.0833333.08333333-.5.83333333-.75 1.25-.5833333.33333333.1666666.58333333.1666666.75.1666666h.25c0-.0833333 0-.25 0-.3333333-.08333334-1.16666667-.25-2.66666667.16666666-3.5 1.16666667-2.66666667 3.66666667-2.83333333 4.33333337-2.83333333h.3333333c.75 0 3.1666667.16666666 4.3333333 2.83333333.4166667.91666667.3333334 2.33333333.25 3.5v.0833333.25h.1666667c.1666667 0 .4166667-.0833333.6666667-.1666666.1666666-.0833334.25-.0833334.4166666-.0833334.1666667 0 .25 0 .4166667.0833334.3333333.0833333.5833333.4166666.5833333.6666666 0 .4166667-.3333333.6666667-.9166666.9166667-.0833334 0-.1666667.0833333-.25.0833333-.3333334.0833334-.8333334.25-.9166667.5-.0833333.1666667 0 .3333334.0833333.5.0833334.25 1.0833334 2.5 3.25 2.8333334.25 0 .4166667.25.4166667.5 0 .0833333 0 .1666666-.0833333.1666666-.1666667.4166667-.9166667.75-2.25 1 0 .0833334-.0833334.25-.0833334.3333334 0 .1666666-.0833333.25-.0833333.4166666-.0833333.25-.25.4166667-.5.4166667-.0833333 0-.25 0-.4166667-.0833333-.25-.0833334-.5-.0833334-.9166666-.0833334-.1666667 0-.4166667 0-.6666667.0833334-.4166667.0833333-.75.3333333-1.1666667.5833333-.6666666.5833333-1.5.8333333-2.5.8333333" fill="#fff" fill-rule="evenodd" transform="translate(-4 -4)"></path>
|
||
</svg>
|
||
<span class="visually-hidden">Snapchat</span>
|
||
</a>
|
||
</li>
|
||
</ul>
|
||
</nav>
|
||
</div>
|
||
</nav>
|
||
</div>
|
||
</div>
|
||
</div>
|
||
<div class="nav-container">
|
||
<div id="block-footer" class="block block-system block-system-menu-blockfooter cc--component-container cc--footer-menu">
|
||
<div class="c--component c--footer-menu">
|
||
<nav class="mc--menu mc--menu-footer" aria-label="UMass Amherst Footer Menu">
|
||
<ul class="menu m--menu m--menu-footer">
|
||
<li class="menu-item menu-item--expanded">
|
||
<span class="navigation-title">Info for...</span>
|
||
<div class="submenu-wrapper">
|
||
<ul class="submenu">
|
||
<li class="menu-item">
|
||
<a href="https://www.umass.edu/gateway/info/prospective-students" data-drupal-link-system-path="node/42831">Prospective Students</a>
|
||
</li>
|
||
<li class="menu-item">
|
||
<a href="https://www.umass.edu/gateway/info/current-students" title="Click here for info for current students" data-drupal-link-system-path="node/61">Current Students</a>
|
||
</li>
|
||
<li class="menu-item">
|
||
<a href="https://www.umass.edu/gateway/info/faculty-and-staff" title="Click here for info for faculty and staff" data-drupal-link-system-path="node/66">Faculty and Staff</a>
|
||
</li>
|
||
<li class="menu-item">
|
||
<a href="https://www.umass.edu/gateway/info/parents-and-families" title="Click here for info for parents and families" data-drupal-link-system-path="node/81">Parents and Families</a>
|
||
</li>
|
||
<li class="menu-item">
|
||
<a href="https://www.umass.edu/hr/careers" title="Info for Job Seekers">Job Seekers</a>
|
||
</li>
|
||
</ul>
|
||
</div>
|
||
</li>
|
||
<li class="menu-item menu-item--expanded">
|
||
<span class="navigation-title">Resources</span>
|
||
<div class="submenu-wrapper">
|
||
<ul class="submenu">
|
||
<li class="menu-item">
|
||
<a href="https://www.umass.edu/registrar/academic-calendar">Academic Calendar</a>
|
||
</li>
|
||
<li class="menu-item">
|
||
<a href="https://www.umass.edu/admissions/visit/visitor-info">Campus Maps</a>
|
||
</li>
|
||
<li class="menu-item">
|
||
<a href="https://www.umass.edu/peoplefinder/">People Finder</a>
|
||
</li>
|
||
<li class="menu-item">
|
||
<a href="https://www.umass.edu/policy/">Policies</a>
|
||
</li>
|
||
<li class="menu-item">
|
||
<a href="https://www.umass.edu/gateway/atoz" title="A-Z Directory" data-drupal-link-system-path="node/3931">Sites A-Z Directory</a>
|
||
</li>
|
||
</ul>
|
||
</div>
|
||
</li>
|
||
<li class="menu-item menu-item--expanded">
|
||
<span class="navigation-title">Connect</span>
|
||
<div class="submenu-wrapper">
|
||
<ul class="submenu">
|
||
<li class="menu-item">
|
||
<a href="https://www.umassalumni.com/">Alumni</a>
|
||
</li>
|
||
<li class="menu-item">
|
||
<a href="https://umassathletics.com/">Athletics</a>
|
||
</li>
|
||
<li class="menu-item">
|
||
<a href="https://www.uma-foundation.org/">Giving</a>
|
||
</li>
|
||
<li class="menu-item">
|
||
<a href="https://www.library.umass.edu/">Libraries</a>
|
||
</li>
|
||
<li class="menu-item">
|
||
<a href="https://www.umass.edu/gateway/contact-us" data-drupal-link-system-path="node/256">Contact Us</a>
|
||
</li>
|
||
</ul>
|
||
</div>
|
||
</li>
|
||
</ul>
|
||
</nav>
|
||
</div>
|
||
</div>
|
||
</div>
|
||
</div>
|
||
<div class="footer-bottom">
|
||
<div class="cc--component-container cc--footer-copyright ">
|
||
<div class="c--component c--footer-copyright">
|
||
<div class="f--field f--description">
|
||
<p>© 2026 University of Massachusetts Amherst</p>
|
||
</div>
|
||
</div>
|
||
</div>
|
||
<div id="block-footerutility" class="block block-system block-system-menu-blockfooter-utility cc--component-container cc--footer-menu">
|
||
<div class="c--component c--footer-menu">
|
||
<nav class="mc--menu mc--menu-footer-utility" aria-label="UMass Amherst Footer Utility Menu">
|
||
<ul class="menu m--menu m--menu-footer-utility">
|
||
<li class="menu-item">
|
||
<a href="https://www.umass.edu/gateway/site-policies" data-drupal-link-system-path="node/3861">Site Policies</a>
|
||
</li>
|
||
<li class="menu-item">
|
||
<a href="https://www.umass.edu/policy/information-privacy-policy" title="UMass Amherst privacy policy">Privacy</a>
|
||
</li>
|
||
<li class="menu-item">
|
||
<a href="https://www.umass.edu/policy/affirmative-action-non-discrimination-and-title-ix-non-discrimination-policy" title="UMass Amherst non-discrimination policies">Non-Discrimination Notice</a>
|
||
</li>
|
||
<li class="menu-item">
|
||
<a href="https://www.umass.edu/accessibility/" title="UMass Amherst Accessibility Resources">Accessibility</a>
|
||
</li>
|
||
<li class="menu-item">
|
||
<a href="https://www.umass.edu/it/policies/it-policy-acceptable-use-interpretation-guidelines" title="UMass Amherst terms of use">Terms of Use</a>
|
||
</li>
|
||
</ul>
|
||
</nav>
|
||
</div>
|
||
</div>
|
||
</div>
|
||
</div>
|
||
</section>
|
||
</div>
|
||
</div>
|
||
</div>
|
||
</footer>
|
||
</footer>
|
||
</div>
|
||
<!-- UMass Scripts -->
|
||
<script src="/theme-assets/umass/js/js_aQtUyeGxehNR84AlGzGB1VfMu1Wn3lqHxvL8rocj1EU.js"></script>
|
||
<script src="/js/mobile-menu.js"></script>
|
||
<script src="/js/ambient-video.js"></script>
|
||
<!-- wp_footer hook -->
|
||
|
||
</body>
|
||
</html>
|