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