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