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