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