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