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