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