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