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