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