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