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