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