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