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