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