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