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