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