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