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