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