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