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