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