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