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