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