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