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