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