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