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