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