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