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