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