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