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