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