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