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