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