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