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