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