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