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