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