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