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