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