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