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