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