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