Use on the webTotal Use [ 5074 ] times
1Add to the head section of web page.
<link href="https://db.onlinewebfonts.com/c/8aea6d72b7190c266f2af858cf9ea5cd?family=Noto+Sans+JP+Thin" rel="stylesheet">
orUsing @import CSS directive, put the following line in add to your css file.(http | https)
@import url(https://db.onlinewebfonts.com/c/8aea6d72b7190c266f2af858cf9ea5cd?family=Noto+Sans+JP+Thin);
orUse font-face declaration Fonts.(http | https)
@font-face {
font-family: "Noto Sans JP Thin";
src: url("https://db.onlinewebfonts.com/t/8aea6d72b7190c266f2af858cf9ea5cd.eot");
src: url("https://db.onlinewebfonts.com/t/8aea6d72b7190c266f2af858cf9ea5cd.eot?#iefix")format("embedded-opentype"),
url("https://db.onlinewebfonts.com/t/8aea6d72b7190c266f2af858cf9ea5cd.woff2")format("woff2"),
url("https://db.onlinewebfonts.com/t/8aea6d72b7190c266f2af858cf9ea5cd.woff")format("woff"),
url("https://db.onlinewebfonts.com/t/8aea6d72b7190c266f2af858cf9ea5cd.ttf")format("truetype"),
url("https://db.onlinewebfonts.com/t/8aea6d72b7190c266f2af858cf9ea5cd.svg#Noto Sans JP Thin")format("svg");
}
2CSS rules to specify fonts
font-family: "Noto Sans JP Thin";