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