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