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