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