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