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