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