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