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