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