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