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