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