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