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