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