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