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