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