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