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