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