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