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