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