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