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