Chào cả nhà, mình đang gặp lỗi với khi sử dụng font Roboto, nếu tiếng Anh thì không lỗi nhưng tiếng Việt thì chữ đậm nhạt không đều
Đây là đoạn head trong html:
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Davitluit</title>
<link rel="stylesheet" href="style.css">
</head>
Css dùng font:
@font-face {
font-family: 'Roboto';
src: url('Roboto-Light-webfont.woff') format('woff');
}
@font-face {
font-family: 'Roboto Light Italic';
src: url('Roboto-LightItalic-webfont.woff') format('woff');
}
@font-face {
font-family: 'Roboto Bold';
src: url('Roboto-Bold-webfont.woff') format('woff');
}
em {
font-family: 'Roboto Light Italic', serif;
}
strong {
font-family: 'Roboto Bold', serif;
}
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
font-family: 'Roboto', sans-serif;
display: grid;
grid-template-areas: "nav nav"
"content ads"
"footer footer";
grid-template-columns: 1fr 300px;
grid-template-rows: 70px 1fr 50px;
grid-gap: .2em;
color: #787878;
}
Bạn nào biết vấn đề này chỉ mình với.