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