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