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