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