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