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