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