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