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