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