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