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