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