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