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