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