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