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