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