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