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