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