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