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