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