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