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