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