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