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