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