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