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