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