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