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