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