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