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