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