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