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