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