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