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