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