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