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