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