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