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