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