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