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