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