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