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