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