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