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