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