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