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