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