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