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