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