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