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