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