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