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