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