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