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