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