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