Use on the webTotal Use [ 6680 ] times
1Add to the head section of web page.
<link href="https://db.onlinewebfonts.com/c/4712a40ac3bd7b4b433fc00e03cf9260?family=Nakadai+V2" 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/4712a40ac3bd7b4b433fc00e03cf9260?family=Nakadai+V2);
orUse font-face declaration Fonts.(http | https)
@font-face {
font-family: "Nakadai V2";
src: url("https://db.onlinewebfonts.com/t/4712a40ac3bd7b4b433fc00e03cf9260.eot");
src: url("https://db.onlinewebfonts.com/t/4712a40ac3bd7b4b433fc00e03cf9260.eot?#iefix")format("embedded-opentype"),
url("https://db.onlinewebfonts.com/t/4712a40ac3bd7b4b433fc00e03cf9260.woff2")format("woff2"),
url("https://db.onlinewebfonts.com/t/4712a40ac3bd7b4b433fc00e03cf9260.woff")format("woff"),
url("https://db.onlinewebfonts.com/t/4712a40ac3bd7b4b433fc00e03cf9260.ttf")format("truetype"),
url("https://db.onlinewebfonts.com/t/4712a40ac3bd7b4b433fc00e03cf9260.svg#Nakadai V2")format("svg");
}
2CSS rules to specify fonts
font-family: "Nakadai V2";