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