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