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