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