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