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