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