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