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