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