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