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