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