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