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