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