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