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