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