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