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