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