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