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