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