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