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