1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36
|
<html>
<head>
<title></title>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<style type="text/css">
@font-face {
font-family: MYB;
src: url('../../../manual_test/font/noto/NotoSans Bold.ttf')
}
@font-face {
font-family: '#MY';
src: url('../../../manual_test/font/noto/NotoSans.ttf')
}
.regular{
font-family: '#MY';
}
.mybold{
font-family: MYB;
}
</style>
</head>
<body>
<span class="regular">Regular font type</span>
<span class="mybold">Bold font type</span>
</body>
</html>
|