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