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