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