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