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