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