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