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