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