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