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