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