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