Bảng chữ cái tiếng hàn
Giới thiệu về khóa học
body{
font-family: Arial, sans-serif;
background:#f5f7fb;
padding:40px;
}
.quiz-box{
max-width:700px;
margin:auto;
background:#fff;
padding:30px;
border-radius:20px;
box-shadow:0 5px 20px rgba(0,0,0,0.1);
}
h1{
text-align:center;
color:#222;
margin-bottom:30px;
}
.question{
margin-bottom:25px;
}
.question h3{
margin-bottom:15px;
color:#333;
}
label{
display:block;
background:#f1f3f7;
padding:12px;
border-radius:10px;
margin-bottom:10px;
cursor:pointer;
transition:0.3s;
}
label:hover{
background:#dfe9ff;
}
button{
width:100%;
padding:15px;
border:none;
background:#4f7cff;
color:white;
font-size:18px;
border-radius:12px;
cursor:pointer;
transition:0.3s;
}
button:hover{
background:#315fe0;
}
#result{
margin-top:25px;
text-align:center;
font-size:22px;
font-weight:bold;
color:#222;
}
🇰🇷 Trắc nghiệm tiếng Hàn cơ bản
1. “Xin chào” trong tiếng Hàn là gì?
2. “Cảm ơn” trong tiếng Hàn là gì?
3. “사랑해요” nghĩa là gì?
4. “학교” nghĩa là gì?
5. “물” nghĩa là gì?
function checkQuiz(){
let score = 0;
const answers = document.querySelectorAll(‘input[type=”radio”]:checked’);
answers.forEach(answer => {
score += Number(answer.value);
});
document.getElementById(“result”).innerHTML =
“🎉 Bạn đúng ” + score + “/5 câu!”;
}




