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