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