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